Welcome Guest, Not a member yet? Register   Sign In
Inconsistent encoding returned [SOLVED]
#2

[eluser]InsiteFX[/eluser]
If you have phpMyAdmin

First do complete SQL dump to get all your tables, sometime changing database collation will corrupt your data and you will need to re-enter it...

1) click on your databse name
2) click on the Operations tab
3) look at the bottom and see what collation your database is set for MySQL defaults to latin1_swedish_ci
If that is what it is set for change it to either utf8_general_ci or utf8_unicode_ci

These should be!
Code:
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';  // or utf8_unicode_ci which is what I use.

InsiteFX


Messages In This Thread
Inconsistent encoding returned [SOLVED] - by El Forum - 04-06-2011, 05:29 AM
Inconsistent encoding returned [SOLVED] - by El Forum - 04-06-2011, 05:36 AM
Inconsistent encoding returned [SOLVED] - by El Forum - 04-06-2011, 05:58 AM
Inconsistent encoding returned [SOLVED] - by El Forum - 04-06-2011, 07:48 AM
Inconsistent encoding returned [SOLVED] - by El Forum - 04-06-2011, 12:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB