Welcome, Guest
Username Password: Remember me

New Error; Illegal mix of collations
(1 viewing) (1) Guest

TOPIC: New Error; Illegal mix of collations

New Error; Illegal mix of collations 13 years, 5 months ago #662

  • folmag
  • OFFLINE
  • Junior Boarder
  • Posts: 22
  • Karma: 0
Hi Mobile Joomla,
I started my day with 331.35 KB worth of errors in my server error log. All of which contained these kind of messages....My mobile traffic has gone down quite a lot in the past week. Please check into this error and get back to me. Sounds very serious.....
[30-Nov-2010 22:37:57] Caught exception 'Exception' with message 'Error in DB RIS Query: Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '='.
Query: CALL jos_TeraWurfl_RIS('Mozilla/5.0 (Windows; U; Windows NT 5.1; xx-xx; rv:1.9.2.12) Gecko/20101026 AlexaToolbar/alxf-1.54 Firefox/3.6.12 (.NET CLR 3.5.30729)',7,'Bot')
' in /home/folmag/public_html/plugins/mobile/terawurfl/DatabaseConnectors/TeraWurflDatabase_MySQL5.php:117

Thanks,
Robin

New Error; Illegal mix of collations 13 years, 5 months ago #2680

  • dryabov
  • OFFLINE
  • Administrator
  • Denis Ryabov, Lead Developer
  • Posts: 4866
  • Karma: 105
Put here the results of the following sql commands:
SHOW GLOBAL VARIABLES LIKE '%collation%';

SHOW COLUMNS FROM 'jos_TeraWurflIndex' FROM 'YOUR_DB_NAME';

SHOW COLUMNS FROM 'jos_TeraWurflMerge' FROM 'YOUR_DB_NAME';

(replace 'YOUR_DB_NAME' by name of your database).

New Error; Illegal mix of collations 13 years, 4 months ago #2780

  • folmag
  • OFFLINE
  • Junior Boarder
  • Posts: 22
  • Karma: 0
Hi,
Where do I replace (replace 'YOUR_DB_NAME' by name of your database)? What file and what line? Please give me a step by step instruction on how to solve this. I would really appreciate it.
Thanks,
Robin

New Error; Illegal mix of collations 13 years, 4 months ago #2781

  • dryabov
  • OFFLINE
  • Administrator
  • Denis Ryabov, Lead Developer
  • Posts: 4866
  • Karma: 105
YOUR_DB_NAME here is the name of used database (look at parameter $db in your configuration.php).

New Error; Illegal mix of collations 13 years, 4 months ago #2783

  • folmag
  • OFFLINE
  • Junior Boarder
  • Posts: 22
  • Karma: 0
Hi,
I know what the database name is, I just don't know where in mobile joomla to replace it with. Where would I edit my database name?
Robin

New Error; Illegal mix of collations 13 years, 4 months ago #2784

  • dryabov
  • OFFLINE
  • Administrator
  • Denis Ryabov, Lead Developer
  • Posts: 4866
  • Karma: 105
No, it's not Joomla-related. I just asked you to run above-mentioned SQL commands in phpMyAdmin (or mysql console) and post results here.

New Error; Illegal mix of collations 13 years, 4 months ago #2801

  • folmag
  • OFFLINE
  • Junior Boarder
  • Posts: 22
  • Karma: 0
Hi Denis,
I finally got the results you need......I am having these issues with 2 databases.
root@ise [/home/folmag]# cat /home/folmag/MHX-14415298.mysql
mysql> SHOW GLOBAL VARIABLES LIKE '%collation%';
+----------------------+-----------------+
| Variable_name | Value |
+----------------------+-----------------+
| collation_connection | utf8_unicode_ci |
| collation_database | utf8_unicode_ci |
| collation_server | utf8_unicode_ci |
+----------------------+-----------------+
3 rows in set (0.02 sec)

mysql> SHOW COLUMNS FROM jos_TeraWurflIndex from folmag_mainsmart;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| deviceID | varchar(64) | NO | PRI | | |
| matcher | varchar(64) | NO | | | |
+----------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

mysql> SHOW COLUMNS FROM jos_TeraWurflMerge from folmag_mainsmart;
+--------------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------------------+--------------+------+-----+---------+-------+
| deviceID | varchar(64) | NO | PRI | | |
| user_agent | varchar(255) | YES | MUL | NULL | |
| fall_back | varchar(64) | YES | MUL | NULL | |
| actual_device_root | tinyint(1) | YES | MUL | 0 | |
| match | tinyint(1) | YES | MUL | 1 | |
| capabilities | mediumtext | YES | | NULL | |
+--------------------+--------------+------+-----+---------+-------+
6 rows in set (0.00 sec)

mysql> SHOW COLUMNS FROM jos_TeraWurflIndex from folmag_jo151;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| deviceID | varchar(64) | NO | PRI | | |
| matcher | varchar(64) | NO | | | |
+----------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

mysql> SHOW COLUMNS FROM jos_TeraWurflMerge from folmag_jo151;
+--------------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------------------+--------------+------+-----+---------+-------+
| deviceID | varchar(64) | NO | PRI | | |
| user_agent | varchar(255) | YES | MUL | NULL | |
| fall_back | varchar(64) | YES | MUL | NULL | |
| actual_device_root | tinyint(1) | YES | MUL | 0 | |
| match | tinyint(1) | YES | MUL | 1 | |
| capabilities | mediumtext | YES | | NULL | |
+--------------------+--------------+------+-----+---------+-------+
6 rows in set (0.00 sec)

mysql>

Hope this helps. My error logs are now over 10 megs a day on this issue.
Thanks,
Robin

New Error; Illegal mix of collations 13 years, 4 months ago #2803

  • dryabov
  • OFFLINE
  • Administrator
  • Denis Ryabov, Lead Developer
  • Posts: 4866
  • Karma: 105
Could you repeat the same with "SHOW FULL COLUMNS" instead of "SHOW COLUMNS" (I forgot that show columns doesn't print collation info)?

New Error; Illegal mix of collations 13 years, 4 months ago #2804

  • folmag
  • OFFLINE
  • Junior Boarder
  • Posts: 22
  • Karma: 0
Here the second try,

mysql> SHOW FULL COLUMNS FROM jos_TeraWurflIndex from folmag_mainsmart;
+----------+-------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| Field | Type | Collation | Null | Key | Default | Extra | Privileges | Comment |
+----------+-------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| deviceID | varchar(64) | utf8_bin | NO | PRI | | | select,insert,update,references | |
| matcher | varchar(64) | utf8_general_ci | NO | | | | select,insert,update,references | |
+----------+-------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
2 rows in set (0.00 sec)

mysql> SHOW FULL COLUMNS FROM jos_TeraWurflMerge from folmag_mainsmart;
+--------------------+--------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| Field | Type | Collation | Null | Key | Default | Extra | Privileges | Comment |
+--------------------+--------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| deviceID | varchar(64) | utf8_bin | NO | PRI | | | select,insert,update,references | |
| user_agent | varchar(255) | utf8_general_ci | YES | MUL | NULL | | select,insert,update,references | |
| fall_back | varchar(64) | utf8_general_ci | YES | MUL | NULL | | select,insert,update,references | |
| actual_device_root | tinyint(1) | NULL | YES | MUL | 0 | | select,insert,update,references | |
| match | tinyint(1) | NULL | YES | MUL | 1 | | select,insert,update,references | |
| capabilities | mediumtext | utf8_general_ci | YES | | NULL | | select,insert,update,references | |
+--------------------+--------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
6 rows in set (0.00 sec)

mysql> SHOW FULL COLUMNS FROM jos_TeraWurflIndex from folmag_jo151;
+----------+-------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| Field | Type | Collation | Null | Key | Default | Extra | Privileges | Comment |
+----------+-------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| deviceID | varchar(64) | utf8_bin | NO | PRI | | | select,insert,update,references | |
| matcher | varchar(64) | utf8_general_ci | NO | | | | select,insert,update,references | |
+----------+-------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
2 rows in set (0.00 sec)

mysql> SHOW FULL COLUMNS FROM jos_TeraWurflMerge from folmag_jo151;
+--------------------+--------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| Field | Type | Collation | Null | Key | Default | Extra | Privileges | Comment |
+--------------------+--------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
| deviceID | varchar(64) | utf8_bin | NO | PRI | | | select,insert,update,references | |
| user_agent | varchar(255) | utf8_general_ci | YES | MUL | NULL | | select,insert,update,references | |
| fall_back | varchar(64) | utf8_general_ci | YES | MUL | NULL | | select,insert,update,references | |
| actual_device_root | tinyint(1) | NULL | YES | MUL | 0 | | select,insert,update,references | |
| match | tinyint(1) | NULL | YES | MUL | 1 | | select,insert,update,references | |
| capabilities | mediumtext | utf8_general_ci | YES | | NULL | | select,insert,update,references | |
+--------------------+--------------+-----------------+------+-----+---------+-------+---------------------------------+---------+
6 rows in set (0.00 sec)

New Error; Illegal mix of collations 13 years, 4 months ago #2805

  • dryabov
  • OFFLINE
  • Administrator
  • Denis Ryabov, Lead Developer
  • Posts: 4866
  • Karma: 105
Run the following mysql-commands to fix collation og Index and Merge tables:
USE folmag_mainsmart;
ALTER TABLE jos_TeraWurflIndex MODIFY matcher VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci;
ALTER TABLE jos_TeraWurflMerge MODIFY fall_back VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci;
Time to create page: 0.29 seconds

By continuing to use this site you consent to the use of cookies on your device as described in our cookie policy unless you have disabled them. This site will not function correctly without cookies.

I accept cookies from this site.