The Arcive of vBulletin Modifications Site. |
|
RSS Post feed (no mods, no plugins) Details »»
|
||||||||||||||||||||||||||||
This is a php script which outputs posts made in the forum in RSS format,
this is not an addition to the existing RSS system but rather an independent PHP file which generates "mock" RSS information. Format of output is this: Code:
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"> <channel> <item> <title>Title of the forum topic</title> <postTitle>Title of my post</postTitle> <link>http://127.0.0.1/vb/showpost.php?p=4</link> <pubDate>Sat, 22 Aug 2009 21:42:48 CDT</pubDate> <description>this is the post content</description> <thread>http://127.0.0.1/vb/showthread.php?t=1&goto=newpost</thread> <dc:creator>s0beit</dc:creator> <guid isPermaLink="true">http://127.0.0.1/vb/showthread.php?t=1</guid> </item> </channel> </rss> Options:
Here is an example URL: Code:
http://localhost/vb/external_post.php?bbcode=1&nohtml=1&newline=1&exclude=1,3 Quote:
This is also my first "mod", be nice. Download Now
Show Your Support
|
||||||||||||||||||||||||||||
| Comments |
|
#2
|
|||
|
|||
|
why this and not using external.php ?
|
|
#3
|
|||
|
|||
|
I would imagine so that you could set RSS feeds to specific forums or users instead of just one global.
|
|
#4
|
|||
|
|||
|
I mostly used this to feed data to my eggdrop, external.php wasn't detailed enough and i didn't think it warranted modifying it to meet my ends. This works perfectly well.
|
![]() |
|
|