Hi there!
First off, after years of Wordpress-induced headaches I am loving the Couch experience!
I'm trying to set up a simple RSS feed for a client's blog. I followed the Documentation guide but the script didn't validate in Feedburner, and I checked the link itself and it seems like it's redirecting to my login page. Any idea what i'm doing wrong or what could be causing this? Here's my link and my feed script... http://pattersonstudiosmusic.com/rss.php
Thanks in advance!
-Andy
First off, after years of Wordpress-induced headaches I am loving the Couch experience!
I'm trying to set up a simple RSS feed for a client's blog. I followed the Documentation guide but the script didn't validate in Feedburner, and I checked the link itself and it seems like it's redirecting to my login page. Any idea what i'm doing wrong or what could be causing this? Here's my link and my feed script... http://pattersonstudiosmusic.com/rss.php
- Code: Select all
<?php require_once( 'admin/cms.php' ); ?>
<cms:content_type 'text/xml' /><cms:concat '<' '?xml version="1.0" encoding="' k_site_charset '"?' '>' />
<rss version="2.0">
<channel>
<title>Patterson Studios Blog</title>
<link><cms:show k_site_link /></link>
<description>Instruction, Production, and Performance</description>
<language>en-us</language>
<pubDate><cms:date format='D, d M Y H:i:s' gmt='1'/> GMT</pubDate>
<generator>Couch CMS</generator>
<cms:pages masterpage='blog.php' limit="10">
<item>
<title><cms:show k_page_title /></title>
<link><cms:show k_page_link /></link>
<description>
<cms:html_encode>
<cms:show blog_content />
</cms:html_encode>
</description>
<pubDate><cms:date k_page_date format='D, d M Y H:i:s' gmt='1'/> GMT</pubDate>
</item>
</cms:pages>
</channel>
</rss>
<?php COUCH::invoke(); ?>
Thanks in advance!
-Andy