chrispix
Forum Replies Created
-
@katooje did you check what charset your database is actually set to? From what you describe, it sounds like the setting you put in the wp-config doesn’t match the database’s character set.
I don’t have access to the 2.x code, but I assume it didn’t use that variable. You can find out your database’s character set by logging into mysql and running the following:
select CCSA.character_set_name, T.table_name from information_schema.collation_character_set_applicability CCSA, information_schema.tables T where T.table_collation = CCSA.collation_name and T.table_name like 'wp%';Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] SQL dump not workingIf you go to /wp-admin/admin.php?page=backwpupsettings and click the Information tab, you’ll see that Blog charset is set to ‘DB_CHARSET’, which is the root of the problem.
To fix this, you need to set the DB_CHARSET environment variable in your wp-config.php, with the rest of your database settings. For example:
define(‘DB_CHARSET’, ‘utf8’);
If you go to /wp-admin/admin.php?page=backwpupsettings and click the Information tab, you’ll see that Blog charset is set to ‘DB_CHARSET’, which is the root of the problem.
To fix this, you need to set the DB_CHARSET environment variable in your wp-config.php, with the rest of your database settings. For example:
define(‘DB_CHARSET’, ‘utf8’);
Forum: Plugins
In reply to: [WiPad] [Plugin: WiPad] Can't scroll from incoming linksAh, I think the post got the tag wptouch somehow. Removed. I use the free WPTouch already–may have to upgrade to get the iPad support. BTW, nice work!