View Single Post
  #10  
Old 11-23-2007, 06:15 AM
 
zaa zaa is offline
 

X-Cart team
  
Join Date: Apr 2004
Location: Ulyanovsk, Russia
Posts: 125
 

Default Re: Syndicate X-Cart news as RSS 2.0 Channel

Quote:
Originally Posted by Acquamarina
Hi,

I added this to my site and generates the feed well but does not validate because I used a word in French. I changed the word but I am not sure how to update the feed as it still showing in the feed. Also, some validators aren't accepting the php format. Is there any way to change that to RSS extension? Any suggestions?

Thank you very much!

The feed is constructed dynamically, so actually you should see the changes right away. As for the French word, you should replace UTF-8 with actual encoding value. For example, you might need to replace

Code:
$rss_channel['encoding'] = 'UTF-8'; with $rss_channel['encoding'] = 'ISO-8859-1';

As for the RSS extension, if you are hosted on a server with Apache web server you may add a rewrite rule that will transparently rewrite feed.xml with feed.php
http://httpd.apache.org/docs/2.0/misc/rewriteguide.html
Reply With Quote