Aug 29
If you install the Wordpress by default, you will be trouble of display Chinese characters
So something you must done before you install a new Wordpress:
1.create wordpress database use
CHARSET=utf8
collation=utf8_general_ci
[tag]collation[/tag]
2.make some change in wp-config.php file
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', 'utf8_general_ci');
If you already have this problem, try to manually Import,rebuild and Export the database use some MySQL tools.
Or, If you [Read More...]