then u probably encountered the same problem i had... with s9y, such that posts became "????"
all u have to do... is not to change ur present setup... that is... such as gb2312 as collation for mysql, for php output encoding, etc...
all u have to do is this, find the mysql.inc.php (or whichever other database u use) under include/db
in the serendipity_db_connect() function, stick the following 2 lines before the end:
Code: Select all
mysql_query('SET NAMES gb2312;', $serendipity['dbConn']);
mysql_query('SET collation_connection = \'gb2312_chinese_ci\';', $serendipity['dbConn']);i dont know what exactly is the problem, but here is the solution... Don't Panic!