by mtu1969 » 2:37pm, Tue 15 Dec, 2009
Long time seeking for solution but now i got it :-)
Found the solution to omit the FCKeditor to translate the german umlaute äüöß in ä etc. and therefore having wrong chars in the textmessages/textmails of phplist
In the file admin/fckphplist.php you can find these entries
FCKConfig.ProcessHTMLEntities = true ;
FCKConfig.IncludeLatinEntities = true ;
FCKConfig.IncludeGreekEntities = true ;
and so on
Setting
FCKConfig.IncludeLatinEntities = false;
is enoug to omit the encoding of these german characters äöüß ÄÜÖ
You can see the affect by toggleing Quellcode/Sourcecode mode on and of. The Umlaute remains the same.
After this change, the HTML-Message sent by phplist is still ok and the most important thing - the textmails generated from the html-formatted text is also ok and has all umlaute in correct manner.
In my opinion it is better not to have html-special-chars for the umlaute in html-mails but the correct umlaute in text-mails.
So look also to these settings if you have similar problems with other encoding-, translation-problems.
Forget about the settings in config.php
define("TEXTEMAIL_ENCODING",'7bit');
you can do what you want in this setting - it has no effect to the german-umlaute problem, because the FCKeditor causes this.
Regards
Marcus
Hope this come to the FAQ, because since I use phplist - i was seeking for that solution.