Sidane
Active member
Apologies if there is an obvious answer to this elsewhere, didn't find one after a brief search.
I'm in the process of prepping my site to migrate to XenForo from vBulletin 3.8. On my local test server (OS X 10.8.3, Apache 2.2, MySQL 5.1) I've done a full import of the data but am having character encoding issues all over the place.
Example:
Text in vBulletin
After importing to XenForo
My vBulletin installation is a standard one. Some character set queries on the VB database:
On the new XenForo database:
When I ran the XenForo importer, I didn't specify a value in the Force Character Set field as there is no encoding specified in my VB config.php.
Any help on why this happening and a possible solution? I will be doing a full reimport again but it takes about 16 hours and I want to make sure that there will be no encoding issues.
Thanks in advance!
I'm in the process of prepping my site to migrate to XenForo from vBulletin 3.8. On my local test server (OS X 10.8.3, Apache 2.2, MySQL 5.1) I've done a full import of the data but am having character encoding issues all over the place.
Example:
Text in vBulletin
André Villas-Boas
At 33 years old, being one of the youngest ever coaches in Porto's history he was given the task of bringing the league title back to Porto. Not only has he done that, he’s done a lot more: He won the Portuguese Super Cup, the Portuguese League, the Portugues Cup and the Europa League. As a cherry on top of a cake, the Portuguese League was won in flawless fashion, with 27 wins, 3 draws and no defeats. An unbeatable run that had only happened once (Benfica in the 70’s) in the 77 years of history of the league. Best attack, best defense. As much as he tries, he can’t avoid the comparisons with Mourinho, who also won the three major competitions on his first season. Villas-Boas bettered it though, with the flawless league performance, and a Super Cup as an extra. The only competition Porto didn’t win was the League Cup, a relatively new cup where Porto suffered the first defeat of the season.
After importing to XenForo
André Villas-Boas
At 33 years old, being one of the youngest ever coaches in Porto's history he was given the task of bringing the league title back to Porto. Not only has he done that, he’s done a lot more: He won the Portuguese Super Cup, the Portuguese League, the Portugues Cup and the Europa League. As a cherry on top of a cake, the Portuguese League was won in flawless fashion, with 27 wins, 3 draws and no defeats. An unbeatable run that had only happened once (Benfica in the 70’s) in the 77 years of history of the league. Best attack, best defense. As much as he tries, he can’t avoid the comparisons with Mourinho, who also won the three major competitions on his first season. Villas-Boas bettered it though, with the flawless league performance, and a Super Cup as an extra. The only competition Porto didn’t win was the League Cup, a relatively new cup where Porto suffered the first defeat of the season.
My vBulletin installation is a standard one. Some character set queries on the VB database:
Code:
show variables like "character_set_database";
latin1
Code:
show variables like "collation_database";
latin1_swedish_ci
Code:
SELECT charset FROM language;
ISO-8859-1
On the new XenForo database:
Code:
show variables like "character_set_database";
utf8
Code:
show variables like "collation_database";
utf8_general_ci
When I ran the XenForo importer, I didn't specify a value in the Force Character Set field as there is no encoding specified in my VB config.php.
Any help on why this happening and a possible solution? I will be doing a full reimport again but it takes about 16 hours and I want to make sure that there will be no encoding issues.
Thanks in advance!