Tikiwiki, PHP, UTF-8 character encoding and MySQL | |
What is UTF-8 and why should one use it ?
In short, UTF-8 is a character encoding that uses 1 to 3 bytes for each character. UTF-8 greatly simplifies the task of internationalization by replacing multiple alternative character encoding (such as ISO8859-15 Latin-9, which encodes those English, French, German, Spanish and Portuguese characters not available in ASCII). To learn more about UTF-8, you should read this :
Is Tikiwiki fully UTF-8 ?
In most cases, it seems to be... but the answer is : No 😉 Nowadays, a typical MySQL installation will create, by default, Latin1 and not UTF8 databases. And since Tikiwiki doesn't specify the database, table, or field encodings in its installation scripts, the data sources are typically created in Latin1. So... data is stored in Latin1 tables and not in UTF8 ones. Good Point! - To create an installationwith a utf-8 database (as the default) see below. Why everything seems to work and what's wrong ?
Because it's not completely impossible to have UTF8 data in Latin1 tables ! The most frequent mistake is to think that specifying encoding at the web server level (through HTTP headers) or in the HTML code is enough. This is not so easy to understand, especially because this could work (or let you think it works) in many situations. In fact you should also use an UTF8 database with UTF8 content. Many people are missing this part of the problem or don't even know that their databases are not correctly configured to handle UTF8 data. What kind of problems may I encounter if I use Latin1 tables for UTF8 data ?
As said before, some UTF8 characters use 3 bytes. Since your database server will not be aware of the real character encoding, you may have this kind of problems :
Example : If you try to store an 8 character string that contains 5 of those 3byte-UTF8 character, your data will require 18 bytes of space and not 8 bytes. So, if you try to store this string in a database field defined to be a string with a maximum lenght of 8 characters, your string will be truncated to 8 bytes.
Example : If you use functions that will count the number of characters in the string or that will return a substring, you may respectively have a total of characters greater than the what it should be, and a substring smaller than the one expected. Ok, so... how does all this stuff work ?
There are three major components you should consider when trying to understand how encoding works for an application like tikiwiki :
|
The web browser | |
Browsers are able to auto-detect character encoding if nothing is specified. This is absolutely not a good thing. Consider an empty page with just a form (FORM tag) to send data to your web application. The browser can't detect, for example, UTF8 if there is only ASCII chars in your page (remember that UTF8 characters that are already available as ASCII chars are stored in only one byte, as if UTF8 was not used). This bad feature exists only because web browsers are designed to work with most content, including those created by people that forgot to specify the encoding or even don't really know what it is. |
How to set UTF-8 as your default encoding | |
In the case of an (X)HTML or XML page generated by PHP, there is multiple way to specify the encoding to the browser :
(1) header('Content-Type: text/html; charset=utf-8');
(3) HTML tag : There is not only one method because :
Since Tikiwiki should be at least XHTML 1.0 compliant, both (3) and (4) should be used. It is a good idea to use (1) and (2) too, because we have static and dynamic non-(X)HTML and non-XML pages. Note that HTTP headers are used in priority if they are different from HTML meta tag. Now that the browser knows the encoding of the web server output and input, let's talk about the two other components... |
PHP in association with a web server | |
PHP doesn't handle UTF-8 natively (until PHP6), this is why you should use php mbstring extensions. (There is also a possibility to set default_charset = "utf8" in the php.ini configuration file. Comments in this file explains that : "As of 4.0b4, PHP always outputs a character encoding by default in the Content-type: header. To disable sending of the charset, simply set it to be empty." ) Configuration example : default_charset = UTF-8 mbstring.language = Neutral mbstring.internal_encoding = UTF-8 mbstring.encoding_translation = On mbstring.http_input = UTF-8 mbstring.http_output = UTF-8 mbstring.detect_order = auto mbstring.substitute_character = none mbstring.func_overload = 0 Note(2010-06-22): mbstring.func_overload must be set to 0 to have the plugin parsing working creectly - Whne the bug will be repaired the best value will be 7 If you don't have access to the server's php.ini configuration file, you can use this syntax in .htaccess files : php_value mbstring.language "Neutral" php_value mbstring.internal_encoding "UTF-8" ... ( Note that tikiwiki source code also need an encoding. Most of the developpers didn't have to worry about that since only the translations files contains non-english words (i.e. ASCII characters). The good news is that tikiwiki translation files (lang/*/language.php) are already in UTF-8 😉 ) |
The database server (MySQL in this article) | |
First of all, only MySQL at version 4.1 or more supports Unicode (see MySQL documentation). MySQL is configured to communicate with "clients". PHP (through it's mysql extensions) is one of them. There is two ways to specify this encoding :
(1) is done by adding the following lines in your MySQL configuration file (/etc/mysql/my.cnf on Debian GNU/Linux) : client default-character-set = utf8 (2) this should be done by sending this query to the database : SET NAMES 'UTF8'; Unfortunately, this is not completely functionnal in practice and this is a known problem 😑 In fact, for the solution (1), PHP mysql extension doesn't read the /etc/mysql/my.cnf file and don't use the specified encoding. In order to handle this, you will need to use the mysqli (MySQL Improved) extension for PHP. By chance, this one is already useable with Tikiwiki, because :
This new extension has been written to be used with MySQL 4.1 or later, in order to handle the new functionnalities of this MySQL version, including the UTF8 stuff. (For more information about MySQLi, check PHP documentation or this MySQLi overview) To switch to mysqli extension, you need to :
(There is also a known MySQL problem with a hardcoded limit of 1000 bytes for the database keys. Considering that keys have a fixed size depending on the maximum size of fields they are based on, and that MySQL calculate this maximum size using the worst case (3 bytes for all characters)) (For latin1 to UTF8 data migration, you can find articles via google 😉 ) Another important point concerning MySQL is the encoding really used to store data. There is no need to explicitely specify the tables or fields character set, and Tikiwiki doesn't specify anything. You only need to specify UTF8 as the whole database encoding. This is done with a query like this : CREATE))(( DATABASE (There is no need to specify collation, the default one will be based on the character set) Just for information, if you want to change your MySQL default character set (that will be used when creating a database without specifying character set), add this to you my.cnf configuration file : mysqld default-character-set = utf8 Tip: to know the mysql setting with phpmyadmin, use the query SHOW VARIABLES LIKE 'char%'; |
Interaction between the three components | |
More precisely, when somebody ask Tikiwiki a web page through it's browser, the following steps are done :
What about MySQL collations ?
Collations are only used to know how to sort data. That's all 😊 Related page at tikiwiki.org
alias
|