
Originally Posted by
chunguens
And now? There are some delay already ? I have send an helpdesk ticket Posted on 28 April 2009 02:17 AM about charset RSS Problem.
Today is 6 May and i haven´t yet a solution.
I know that you have one less member at the team ... but i want only an estimate of when you will look for my little problem.
Best Regards
Mostly all Indexu installations are encoded in utf-8 but all rss files are stupidly encoded in iso-8859-1. That's can cause charset problems.
Fix:
go to /themes/YOUR_THEME/rss/
open all *.xml files in an editor (f.e. notepad) and search for
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
replace iso-8859-1 with the encoding you are using.
Code:
<?xml version="1.0" encoding="utf-8"?>
clear the template cache, and you're done.
Hope this helps