I have 3 separate rss feeds for 3 different channels, going through the same template (rss/index, where segment_2 get’s replaced with the channel short name). To channels are working fine, but the third feed, which I tried to add today, is empty, even though it contains recent entries.
The channel settings are identical except for the full name and the short name, and so are the group assignments.
What in the world could cause the difference!?
(I have tried adding the debug parameter, but saw no error messages or any other difference in output. I also validated the feed using W3C’s tool.)
———
These are the three feeds:
feed://www.thepersonalistproject.org/rss/home
feed://www.thepersonalistproject.org/rss/members
feed://www.thepersonalistproject.org/rss/courtship
And this is the rss/index template:
{preload_replace:master_channel_status="open"}
{exp:rss:feed channel="{segment_2}" status="{master_channel_status}"}
<?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:content="http://purl.org/rss/1.0/modules/content/"
xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="{channel_url}home/{segment_2}" rel="self" type="application/rss+xml" >
<title>The Personalist Project</title>
<link>http://www.thepersonalistproject.org/</link>
<description>Giving life some serious thought</description>
<dc:language>en</dc:language>
<dc:creator>[email protected]</dc:creator>
<dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
<dc:date>{gmt_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
<admin:generatorAgent rdf:resource="http://expressionengine.com/" >
{exp:channel:entries channel="{segment_2}" status="{master_channel_status}" limit="10" dynamic_start="on" disable="member_data|pagination"}
<item>
<title>{exp:xml_encode}{title}{/exp:xml_encode}</title>
<link>http://www.thepersonalistproject.org/comments/{url_title}</link>
<guid>http://www.thepersonalistproject.org/comments/{url_title}</guid>
<description>{exp:xml_encode}{post_body}{/exp:xml_encode}</description>
<dc:date>{gmt_entry_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
</item>
{/exp:channel:entries}
</channel>
</rss>
{/exp:rss:feed}