3
What are your database settings (character setting, collation) for the table where Articles stores the stories?
mySQL charset UTF-8 Unicode (utf8)
collation utf8_unicode_ci
Table Articles
utf8_general_ci
What settings (_CHARSET, _LANGCODE, XOOPS_USE_MULTIBYTES) do you have in your /language/yourlanguage/global.php?
define('_CHARSET', 'ISO-8859-15');
define('_LANGCODE', 'nl');
// change 0 to 1 if this language is a multi-bytes language
define("XOOPS_USE_MULTIBYTES", "0");
What settings (setlocale) do you have in your /language/yourlanguage/locale.php?
setlocale(LC_ALL, 'en_US');
Ok, so there is a difference, but what is now the best way to go on?