admin
05-02-2008, 12:29 PM
If you receive character error after upgrading, the upgrader may have changed the database from latin1 character set to UTF8.
Edit your config.php and change following:
define(’DB_CHARSET’, ‘utf8′);
define(’DB_COLLATE’, ”);
To
define(’DB_CHARSET’, ”);
define(’DB_COLLATE’, ”);
Delete the both lines or just delete utf8 in DB_CHARSET and it should work.
Edit your config.php and change following:
define(’DB_CHARSET’, ‘utf8′);
define(’DB_COLLATE’, ”);
To
define(’DB_CHARSET’, ”);
define(’DB_COLLATE’, ”);
Delete the both lines or just delete utf8 in DB_CHARSET and it should work.