
Originally Posted by
kappy1
If I select Visitors Countries Stats I get this error. I applied the sq patch but still the same thing and only for this one report.
WARNING: An Error occurred, please refresh the page and try again.
Fatal error: 1267:Illegal mix of collations (latin1_general_ci,IMPLICIT) and (latin1_swedish_ci,IMPLICIT) for operation '=' :: SELECT COUNT(*) AS count, s.country_code, c.countries_name FROM supertracker s LEFT JOIN countries c ON (c.countries_iso_code_2 = s.country_code) GROUP BY country_code in /home/kellys14/public_html/catalog/includes/classes/db/mysql/query_factory.php on line 101
Execute this SQL-code:
Code:
ALTER TABLE `supertracker` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
ALTER TABLE `supertracker` CHANGE `country_code` `country_code` CHAR(2) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';