Quote:
Originally Posted by MattIS
Fixed the above now my posts are being cut off any ideas?
|
This is due to a character encoding mismatch. I assume you are using ISO for wordpress.
In wp-config.php change the following lines:
PHP Code:
define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
to:
PHP Code:
/*define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');*/
Wordpress will work just fine with those lines commented out.