I have an RSS feed I have built. The feed displays fine, but feed readers are having problems with it.
The biggest problem is I want to populate articles from this feed into another site using magpie and nothing is showing up.
Below is how I have the feed coded. Anyone have any idea why this isn’t working?
{exp:rss:feed weblog="ribbit_blogs" title="The Ribbit Blogs" debug="yes"}
<?xml version="1.0" encoding="{encoding}"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:admin="http://webns.net/mvcb/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>The Ribbit</title>
<link>http://www.carolinascw.com/theribbit/</link>
<description></description>
<dc:language>en</dc:language>
<dc:creator>The Ribbit</dc:creator>
<dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
<dc:date>{date format="{DATE_W3C}"}</dc:date>
{exp:weblog:entries weblog="ribbit_blogs" limit="10" rdf="off" dynamic_start="on" disable="member_data|trackbacks"}
<item>
<title>{exp:xml_encode}{title}{/exp:xml_encode}</title>
<link>{title_permalink=/theribbit/article/}</link>
<description>{exp:xml_encode}{ribbit_abstract}{/exp:xml_encode}</description>
<dc:language>en-us</dc:language>
<dc:creator>Read Story</dc:creator>
<dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
<author>The Ribbit - Amy Wood</author>
{entry_date format="%D, %d %M %Y %H:%i:%s %T"}</pubDate>
<admin:generatorAgent rdf:resource="http://www.pmachine.com/" >
</item>
{/exp:weblog:entries}
{exp:comment:entries orderby="date" sort="desc"}
<item>
<title>{exp:xml_encode}Comment by {name}{/exp:xml_encode}</title>
<link>{exp:xml_encode}{url_or_email_as_link}{/exp:xml_encode}</link>
<description>{exp:xml_encode}{comment}{/exp:xml_encode}</description>
<content:encoded><![CDATA[{comment}]]></content:encoded>
<dc:date>{gmt_entry_date format="%Y-%m-%dT;%H:%i:%s%Q"}</dc:date>
</item>
{/exp:comment:entries}
</channel>
</rss>
{/exp:rss:feed}