Your feed still doesn't work without the number="10" removed. It's still doesn't validate. Look at the source of your feed. It isn't formatted properly. It is spitting out the news as text before it starts getting into the declaration.
I see:
Code: Select all
#
# <!-- Displaying News Module -->
# <!-- News Categories: '' -->
# <!-- Start News Display Template -->
# <p>
# Page 1 of 5
# <a href="http://akapplegarth.us/index.php?mact=News,m2,default,1&m2number=10&m2assign=junk&m2pagenumber=2&m2returnid=15&page=15">></a> <a href="http://akapplegarth.us/index.php?mact=News,m2,default,1&m2number=10&m2assign=junk&m2pagenumber=5&m2returnid=15&page=15">>></a>
# </p>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=53&cntnt01returnid=15">RSS Feed is Fixed!</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>The RSS Feed is now working.</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=52&cntnt01returnid=15">240RevBot Started</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>Check out the <a href="http://akapplegarth.us/index.php?page=240revbot" title="240RevBot">project page</a>.</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=51&cntnt01returnid=15">Website Update</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>Updated all CMS modules. RSS Feed is not working. Updated Blog.</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=50&cntnt01returnid=15">Blog Update</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>Updated blog.</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=49&cntnt01returnid=15">Lego Thumb Drive Finished!</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p><a href="index.php?page=lego-thumb-drive-project">Check it out here</a><a>!</a></p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=48&cntnt01returnid=15">Lil' Miller Bot is Done!</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>Finished the <a href="index.php?page=lil-miller">Lil' Miller Bot</a>. Added photos to the <a href="index.php?page=beam-robots">BEAM Gallery</a>.</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=47&cntnt01returnid=15">New JingleBot Photos</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>Added photos to the <a href="index.php?page=beam-robots">BEAM Gallery</a>.</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=46&cntnt01returnid=15">New JingleBot Finished!</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>It is done! <a href="index.php?page=new-jinglebot">Check it out here</a>!</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=45&cntnt01returnid=15">New JingleBot Started!</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>New JingleBot has begun! <a href="index.php?page=new-jinglebot">See it here</a>!</p>
# </div>
#
#
#
# </div>
# <div class="NewsSummary">
#
#
# <div class="NewsSummaryLink">
# <a href="http://akapplegarth.us/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=44&cntnt01returnid=15">LM3909Vore Finished!</a>
# </div>
#
# <div class="NewsSummarySummary">
# <p>She LIVES! <a href="index.php?page=lm3909vore">See how it turned out</a>!</p>
# </div>
#
#
#
# </div>
# <!-- End News Display Template -->
That should not be in the source of your feed. I suggest starting a whole new feed for news and using this template. Replace the entire default template with this.
Code: Select all
{* original rss feed template *}
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>{$feed.title}</title>
{if isset($feed.link) && !empty($feed.link)}<link>{$feed.link}</link>{/if}
{if isset($feed.description) && !empty($feed.description)}<description>{$feed.description}</description>{/if}
{if isset($feed.copyright) && !empty($feed.copyright)}<copyright>{$feed.copyright}</copyright>{/if}
{if isset($generator)}<generator>{$generator}</generator>{/if}
{if isset($feed.managing_editor) && !empty($feed.managing_editor)}<managingEditor>{$feed.managing_editor}</managingEditor>{/if}
{if isset($admin_email)}<webMaster>{$admin_email} ({$admin_user->firstname} {$admin_user->lastname})</webMaster>{/if}
{if isset($feed.image) && !empty($feed.image)}
<image>
{if isset($feed.description) && !empty($feed.description)}<description>{$feed.description}</description>{/if}
{if isset($feed.link) && !empty($feed.link)}<link>{$feed.link}</link>{/if}
<title>{$feed.title}</title>
<url>{$file_location}/{$feed.image}</url>
</image>
{/if}
{* an example of how to create a feed from a call to the news module *}
{* you can use any smarty variable that is available in the news summary template *}
{* you can substitute this logic with output from any module that supports a summary
view, or possibly get artistic and mix output from different modules *}
{news assign='junk'}
{foreach from=$items item='entry'}
<item>
<title>{$entry->title}</title>
<link>{$entry->moreurl}</link>
<description>{if isset($entry->summary)}{$entry->summary|strip_tags|summarize:40}{else}{$entry->content|strip_tags|summarize:40}{/if}</description>
<pubDate>{$entry->postdate|us_date_format:"%a, %d %b %Y %H:%M:%S %Z"}</pubDate>
<guid>{$entry->moreurl}</guid>
</item>
{/foreach}
</channel>
</rss>
If that works then try adding number='10' to your {news assign='junk'} call.