Finally I found the solution as the problem was not related to the database but the page encoding and it sufficed to change the files lang/strings_english.txt and the others by replacing
$s_charset = "windows-1252";
with:
$s_charset = "UTF-8";
I described all my steps here http://www.len.ro/work ...
Search found 3 matches
- 10 Jan 2007, 10:54
- Forum: General Discussion
- Topic: Migrating from Mysql 4.0 to Mysql 5.0
- Replies: 1
- Views: 4503
- 10 Jan 2007, 10:52
- Forum: Help
- Topic: UTF8 with MySQL 4.1
- Replies: 6
- Views: 9140
The page encoding
For anyone which finds this topic searching for utf-8 encoding maybe the problem is not in the database but in the page encoding and it suffices to change the files lang/strings_english.txt and the others by replacing
$s_charset = "windows-1252";
with:
$s_charset = "UTF-8";
as I did on the process ...
$s_charset = "windows-1252";
with:
$s_charset = "UTF-8";
as I did on the process ...
- 10 Jan 2007, 09:54
- Forum: General Discussion
- Topic: Migrating from Mysql 4.0 to Mysql 5.0
- Replies: 1
- Views: 4503
Migrating from Mysql 4.0 to Mysql 5.0
Hello,
I am migrating my mantis installation from mysql 4.0 to mysql 5.0. My database contains french characters. I started by experimenting problems with the database. All the database seemed to be trunked to the first non-ascii character found. I managed to solve this problem by using iconv to ...
I am migrating my mantis installation from mysql 4.0 to mysql 5.0. My database contains french characters. I started by experimenting problems with the database. All the database seemed to be trunked to the first non-ascii character found. I managed to solve this problem by using iconv to ...