Quote:
Originally Posted by LoveStream
I had a uni_code problem in my MySQL while import from old GAL tables.
Yours.
|
In v1.0.4, I've changed the charset on the tables to utf8 (rather than latin1) ... hopefully this will solve the problem.
If you don't want to re-install, you could manually change the charset (through the mysql command line client, or phpmyadmin or similar):
Code:
alter table xxx default charset utf8
, where xxx is the table name (which in turn will depend on any table name prefix you're using).
There are 9 tables to modify, each beginning {PREFIX}_autolinker_
Hope that helps