backend.php automatically creates an RSS feed from your news. There is nothing you need to do. Users can put the URL to the backend.php file into their RSS reader and it should work
I thought I would go ahead and post my backend.php just in case:
<php>sql_fetchrow($db->sql_query("SELECT catid FROM ".$prefix."_stories_cat WHERE title LIKE '%$cat%' LIMIT 1"));
if ($catid == "") {
$result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories ORDER BY sid DESC LIMIT 10");
} else {
$catid = intval($catid);
$result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories WHERE catid='$catid' ORDER BY sid DESC LIMIT 10");
}
} else {
$result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories ORDER BY sid DESC LIMIT 10");
}
Also, it won't solve this problem, but you may want to check out my nukeFEED module that allows you to generate many types of feeds (e.g. last 7 news items from this news category, most popular 20 downloads, etc.)
I was hving a problem with RSS feeds in IE7 and no forums on any phpnuke site I posted this to either had the issue talked about or did anyone reply to my posts. I found a fix for it at a totally unrelated script site, which helped me to fix the DTD error issues I was experiencing with phpnuke 8.0 and here's what I did:
HOW I FIXED MY PHPNUKE RSS FEEDS
Open backend.php and backendforums.php
EDIT: FOR SOME REASON MY CODE WON'T "STICK"....even tho I have it wrapped around code /code tags...so I'll try it as plain text...nope that's not working either. How do I post code here without it being removed??? Here's what's happening:
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum