merktnichts
08-29-2007, 08:35 AM
I just did the following queries in MySQL:
mysql> show variables like '%character_set%';
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | latin1 |
| character_set_connection | latin1 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | latin1 |
| character_set_server | latin1 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
mysql> show variables like '%collat%';
+----------------------+-------------------+
| Variable_name | Value |
+----------------------+-------------------+
| collation_connection | latin1_swedish_ci |
| collation_database | latin1_swedish_ci |
| collation_server | latin1_swedish_ci |
+----------------------+-------------------+
That's confusing me a bit cause in another post I read (http://forums.opengarden.org/showpost.php?p=2742&postcount=2) it should all be utf8_general_ci for the collation variables and utf8 for the character_set_% variables.
Do my current settings have negative influence on how Deki works?
I remember that we had several reports concerning foreign characters and the Mindtouch crew fixed all of them, but the queries I did not make me wonder now if it was just a matter of wrong charsets?
The origin of my MySQL database is from a clean setup with a pure Deki 1.8.1 (without any letter appended). When I did that weeks ago (when 1.8.1 was current), I was following the installation guide religiously, so if there's something wrong with my charsets, the installation script most probably was the culprit.
Is there a way to correct it all without losing or changing our data? I wouldn't wanna destroy all the ä's, ö's, etc. And there are many of them in our DB now...
mysql> show variables like '%character_set%';
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | latin1 |
| character_set_connection | latin1 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | latin1 |
| character_set_server | latin1 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
mysql> show variables like '%collat%';
+----------------------+-------------------+
| Variable_name | Value |
+----------------------+-------------------+
| collation_connection | latin1_swedish_ci |
| collation_database | latin1_swedish_ci |
| collation_server | latin1_swedish_ci |
+----------------------+-------------------+
That's confusing me a bit cause in another post I read (http://forums.opengarden.org/showpost.php?p=2742&postcount=2) it should all be utf8_general_ci for the collation variables and utf8 for the character_set_% variables.
Do my current settings have negative influence on how Deki works?
I remember that we had several reports concerning foreign characters and the Mindtouch crew fixed all of them, but the queries I did not make me wonder now if it was just a matter of wrong charsets?
The origin of my MySQL database is from a clean setup with a pure Deki 1.8.1 (without any letter appended). When I did that weeks ago (when 1.8.1 was current), I was following the installation guide religiously, so if there's something wrong with my charsets, the installation script most probably was the culprit.
Is there a way to correct it all without losing or changing our data? I wouldn't wanna destroy all the ä's, ö's, etc. And there are many of them in our DB now...