Save the code as rss.php
place rss.php in your wcddl dir where funcs.php is stored.
it works for wcddl v2.1

demo: http://the-ddl.org/rss.php

Code: 
<?php
header("Content-type: application/rss+xml");
date_default_timezone_set('Europe/London');
include "funcs.php";


$query = mysql_query("
SELECT * FROM wcddl_downloads order by id desc limit 0, 50;
");

?>
<rss version="2.0">
<channel>

<title><?=$core->sitename?> - Latest Downloads</title>
<description>Latest 100 Downloads</description>
<link>$core->siteurl</link>

<?php

while($dl = mysql_fetch_array($query)) {
  echo "
  <item>
    <title>[".$dl['type']."] ".htmlspecialchars($dl['title'])."</title>
    <description>Type: ".htmlspecialchars($dl['type']).", Site: ".htmlspecialchars($dl['name'])." (".htmlspecialchars($dl['url']).")</description>
    <link>$core->siteurl/download-".htmlspecialchars($dl['type'])."-".htmlspecialchars($dl['id'])."-".seoname($dl['title']).".html</link>
   <pubDate>".date("D, d M Y H:i:s +0100", $dl['dat'])."</pubDate>
  </item>
  ";
}

?>

</channel>
</rss>
You can customize the sql for your limits.. here it takes first 50 downloads from the queue.



Regards.


Edit:
To have this working you need to seo your links as instructed here by DEViANCE: http://warezcoders.com/forum/viewtopic.php?f=15&t=835
deAthbLisS Reviewed by deAthbLisS on . WCDDL RSS - Simplified Save the code as rss.php place rss.php in your wcddl dir where funcs.php is stored. it works for wcddl v2.1 demo: http://the-ddl.org/rss.php <?php header("Content-type: application/rss+xml"); date_default_timezone_set('Europe/London'); Rating: 5