7 julio, 2009
0 Comments
Simpre podemos compilar con la opcion:
./configure --with-charset=utf8 --with-collation=utf8_general_ci
O cambiar la fomra que el servicio mysqld inicia, tecleamos como root:
mysqld --character-set-server=utf8 --collation-server=utf8_general_ci
O simplemente convertimos la base de datos, desde la consola de mysql:
ALTER DATABASE `myDB` CHRACTER SET utf8 COLLATE utf8_general_ci; // run the following query on each table: ALTER TABLE `tableName` CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
/etc/php.ini
Ahora actualizamos los valores por defecto de php:
; PHP's built-in default is text/html default_mimetype = "text/html" ;default_charset = "iso-8859-1" default_charset = "utf8_unicode_ci"