This question may be related to a resolved thread.
I’m upgrading from 1.6.9 core to 2.1.3 non-profit. I’m doing this locally using MAMP as a test before upgrading the live site. The site is in French, and after the upgrade, all the accented characters are turned into question marks.
For example the word Événements becomes ?v?nements.
The original site character set was utf-8, and the new one is too, and I’ve included the following in my templates:
<meta http-equiv="Content-Type" content="text/html; charset={charset}" />I’ve tried importing the database as utf-8 and as latin-1. In both cases if I look at the structure of the db using phpMyAdmin, all the tables are using latin1_swedish_ci collation before the upgrade to ee 2.1.3.
After the upgrade most are using utf8_general_ci. I’ve also tried manually changing any tables that were not changed to utf8_general_ci.
I’ve tried editing the db flat file using a text editor before importing and replacing CHARSET=latin1 with CHARSET=utf8.
What else can I try?