You are here:  » Accent


Accent

Submitted by achatguitare on Mon, 2006-04-24 20:49 in

Hi,

When I import XML feed, I cant read the accents "é", "è", etc...

How can I find the answer ?

Best regards

Submitted by support on Mon, 2006-04-24 20:51

Hi,

Have you configured a character set for your site? In config.php the default is:

<?php
  $config_charset 
"";
?>

First, try:

<?php
  $config_charset 
"utf-8";
?>

If that doesn't work, try:

<?php
  $config_charset 
"iso-8859-1";
?>

If neither of those change the output; try using your browser's "View > Character Encoding" menu to see if you can find the correct character set, and then use that value in the config file.

Hope this helps..!
Cheers,
David.