2
From
this story and possibly in "Readme's" try this
Upgrading a non UTF-8 site:
UTF-8 encoding has been introduced into XOOPS 2.3 as default charset. However, there might be some problems with converting existent websites from non UTF-8 charset to UTF-8.
Before there is a good enough solution for this conversion, following settings are recommended when you upgrade an existent website if you are not an experienced user:
- Select "Do not change" option in "Database character set and collation" step during upgrade process
- Modify /languages/yourlanguage/global.php to use existent _CHARSET value
If it has been changed to UTF-8 in your new global.php file to
define('_CHARSET', 'UTF-8');
change it back to what it was before, e.g.:
define('_CHARSET', 'ISO-8859-1');
;o)