XF 1.1 Ipboard => Xenforo

  • Thread starter Thread starter Deleted member 10469
  • Start date Start date
D

Deleted member 10469

Guest
Hello, I have a problem when converting to ipboard to XenForo.

Accented characters are not displayed (title, topic, message, user, etc.) :

élémentaire => lmentaire
bric-à-brac=> bric--bra

Présentation des membres =>
19e3J.jpg


Etc.
How to avoid this please?

I opened a ticket, but XenForo must be closed the weekend.
 
It's good.
I removed the piece of code that caused problems and the conversion went well the end.

There remains the problem of character.

1anMo.jpg


1anMP.jpg


And url:

1anNo.jpg
 

Hmm. Well at least the accented characters were not removed this time.

This might be a problem with the presentation. Is this template customized?

Admin CP -> Appearance -> Templates -> PAGE_CONTAINER

The charset should be hard-coded in the head area:

Code:
<meta charset="utf-8" />

Or more generally, try reverting that template.

Could also be your language locale but I don't think so:

Admin CP -> Appearance -> Languages -> [click your language] -> Locale
 
Hello, the conversion was carried out on a new installation XenForo (new file and new database).
The problem is alway present.
 
Did you import the IPB sql first on a new system or was it the original installation? If you imported it, which charset did you use (in phpmyadmin)? Can you select a message using French Accented Characters, export it in sql and upload it here?
 

Attachments

Hello, problem solved, I exported the db and used the function search/replace to put everything as it should be :)
 
I have a little problem.
Is it possible to apply this query to all tables in a db in one go please?
REPLACE(column_name,"é","é")
 
I have a little problem.
Is it possible to apply this query to all tables in a db in one go please?
REPLACE(column_name,"é","é")
Seulement table par table, il faut écrire un script sinon pour l'exécuter sur l'ensemble des tables à la fois (beginTransaction -> query update -> query update -> ... -> commit).
 
Top Bottom