hi,
if i were you i would do some local test
- first, make a dump of you database (export in phpMyAdmin) without any compatibility
(before, you can truncate/empty your prefix_manager_log and prefix_event_log table that may be heavy and not that usueful...)
- then, open the resulting sql file with your text editor to see if everything look okay , pay attention to all the _user_ tables and look if ids and internalKey’s match
- erase all the collation if there are (it shouldn’t but well)
- then, locally, create a new database set its collation on
utf8_general_ci not unicode_ci
- and, last but not least, import your sql file in that new db and see if everything is ok (if not, you may have trouble importing...)
if ( everything != ok ): well then, tell us what happened...
if ( everything == ok ): then, cross your fingers hard, delete all the tables in the former db, set its collation on
utf8_general_ci and reimport you sql file, things should go better
endif;
Have swing