Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

RSS Feeds?

Asked Modified Viewed 4,849 times
L
lamborgini8
L
www.fs-addons.net
FS2004/X Addons!
  • Member, joined since
  • Contributed 135 posts on the community forums.
  • Started 51 threads in the forums
  • Started this discussions
asked
Member

Is there a way I can add my own RSS feed to my site like the one on the right panel on here? I noticed there is a RSS image in the images folder so is there something built in somewhere for it?
0 replies

17 posts

K
kemper
K
kemper 10
farm4.static.flickr.com/3057/2609887104_4470d79b05.jpg
  • Senior Member, joined since
  • Contributed 235 posts on the community forums.
  • Started 8 threads in the forums
answered
Senior Member

Check Mods Site!
0 replies
L
lamborgini8
L
www.fs-addons.net
FS2004/X Addons!
  • Member, joined since
  • Contributed 135 posts on the community forums.
  • Started 51 threads in the forums
  • Started this discussions
answered
Member

Quote

kemper wrote:
Check Mods Site!


Read my topic again.

I want my own feeds. Not to add someone else's feed to my site.
Edited by lamborgini8 on 26-08-2008 19:34,
0 replies
J
Josso
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
answered
Senior Member

And therfore you should check the mods-site.
Cause there thay have the mods for rss. ;)
0 replies
P
PolarFox
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
answered
Veteran Member

Rebuld mod rss from v6, if you know php.
0 replies
K
kemper
K
kemper 10
farm4.static.flickr.com/3057/2609887104_4470d79b05.jpg
  • Senior Member, joined since
  • Contributed 235 posts on the community forums.
  • Started 8 threads in the forums
answered
Senior Member

OK... I'll hold your hand and lead you in the right direction here.

Mods site >
Mods DB >
News & Feeds >
RSS Parser = incoming feeds from any external news feed.
RSS Feeds = outgoing rss fees from your site, "I want my own feeds. Not to add someone else's feed to my site."
0 replies
N
NikonForum
N
  • Junior Member, joined since
  • Contributed 22 posts on the community forums.
  • Started 1 thread in the forums
answered
Junior Member

Too bad this mod even includes threads from ALL forumparts, even the ones that only MOD/ADMINS can see/use :(
0 replies
B
Basti
B
Basti 10
[PHP-Fusion Crew Member & Admin from June 2008 - December 2010]

http://basti2web.de - Support Site for my infusions
  • Veteran Member, joined since
  • Contributed 1,099 posts on the community forums.
  • Started 32 threads in the forums
answered
Veteran Member

Quote

NikonForum wrote:
Too bad this mod even includes threads from ALL forumparts, even the ones that only MOD/ADMINS can see/use :(


You should report this on the MODS Site.
Maybe someone rewrites and corrects the Mod ;)
0 replies
K
kemper
K
kemper 10
farm4.static.flickr.com/3057/2609887104_4470d79b05.jpg
  • Senior Member, joined since
  • Contributed 235 posts on the community forums.
  • Started 8 threads in the forums
answered
Senior Member

Which mod?
0 replies
S
starefossen
S
www.postexus.com - Follow Postexus on Facebook.
  • Senior Member, joined since
  • Contributed 359 posts on the community forums.
  • Started 20 threads in the forums
answered
Senior Member

Shouldn't be hard, only using groupaccess() and check for it ;)

Does anyone have a link for this mod?
0 replies
V
Voodoo-Publishing
V
  • Junior Member, joined since
  • Contributed 24 posts on the community forums.
  • Started 2 threads in the forums
answered
Junior Member

save this as rss.php or whatever you want to call it, and drop it in your root php-fusion 7 folder.. to use it, just link to it.. here's what it looks like coming off of one of my sites:

http://acidplanet.org/rss.php

I hope that helps :)


<?php

require_once "maincore.php";

header("Content-Type: text/xml");

echo "<?xml version=\"1.0\" encoding=\"".$locale['charset']."\"?>\n\n\n\n\n";

global $settings, $db_prefix;

$result = dbquery("SELECT * FROM ".$db_prefix."news ORDER BY news_datestamp DESC LIMIT 0, 15");

$numrows = dbrows($result);

echo "<rss version='2.0' xmlns:atom='http://www.w3.org/2005/Atom'>\n";

echo "<channel>\n";

echo "<title>".htmlspecialchars($settings['sitename'])."</title>\n";

echo "<link>".$settings['siteurl']."</link>\n";

echo "<language>en-us</language>\n\n";

for ($i=1;$i < $numrows;$i++){

$data = dbarray($result);

if ($data['news_breaks'] == "y") { $data['news_news'] = nl2br($data['news_news']); }

echo "<item>\n";

echo "<title>".$data['news_subject']."</title>\n";

echo "<link>".stripslashes(htmlspecialchars($settings['siteurl']."news.php?readmore=".$data['news_id']))."</link>\n";

echo "<description>".stripslashes(htmlspecialchars($data['news_news']))."</description>\n";

echo "<pubDate>".date("r",$data['news_datestamp'])."</pubDate>\n";

echo "<guid>".stripslashes(htmlspecialchars($settings['siteurl']."news.php?readmore=".$data['news_id']))."</guid>\n";

echo "</item>\n\n";

}

echo "<atom:link href='http://www.YOUR_URL.com/rss.php' rel='self' type='application/rss+xml' />\n\n";



echo "</channel>\n";

echo "</rss>";

?>


0 replies
L
lamborgini8
L
www.fs-addons.net
FS2004/X Addons!
  • Member, joined since
  • Contributed 135 posts on the community forums.
  • Started 51 threads in the forums
  • Started this discussions
answered
Member

Quote

Studio1031 wrote:
save this as rss.php or whatever you want to call it, and drop it in your root php-fusion 7 folder.. to use it, just link to it.. here's what it looks like coming off of one of my sites:

http://acidplanet.org/rss.php

I hope that helps :)


<?php

require_once "maincore.php";

header("Content-Type: text/xml");

echo "<?xml version=\"1.0\" encoding=\"".$locale['charset']."\"?>\n\n\n\n\n";

global $settings, $db_prefix;

$result = dbquery("SELECT * FROM ".$db_prefix."news ORDER BY news_datestamp DESC LIMIT 0, 15");

$numrows = dbrows($result);

echo "<rss version='2.0' xmlns:atom='http://www.w3.org/2005/Atom'>\n";

echo "<channel>\n";

echo "<title>".htmlspecialchars($settings['sitename'])."</title>\n";

echo "<link>".$settings['siteurl']."</link>\n";

echo "<language>en-us</language>\n\n";

for ($i=1;$i < $numrows;$i++){

$data = dbarray($result);

if ($data['news_breaks'] == "y") { $data['news_news'] = nl2br($data['news_news']); }

echo "<item>\n";

echo "<title>".$data['news_subject']."</title>\n";

echo "<link>".stripslashes(htmlspecialchars($settings['siteurl']."news.php?readmore=".$data['news_id']))."</link>\n";

echo "<description>".stripslashes(htmlspecialchars($data['news_news']))."</description>\n";

echo "<pubDate>".date("r",$data['news_datestamp'])."</pubDate>\n";

echo "<guid>".stripslashes(htmlspecialchars($settings['siteurl']."news.php?readmore=".$data['news_id']))."</guid>\n";

echo "</item>\n\n";

}

echo "<atom:link href='http://www.YOUR_URL.com/rss.php' rel='self' type='application/rss+xml' />\n\n";



echo "</channel>\n";

echo "</rss>";

?>




Perfect!

Thanks.
0 replies
V
Voodoo-Publishing
V
  • Junior Member, joined since
  • Contributed 24 posts on the community forums.
  • Started 2 threads in the forums
answered
Junior Member

if you want to bring external feeds into your site, don't bother with the stuff on the mod site.. get a copy of rss2js and install it on your site, or even easier, go to http://itde.vccs.edu/rss2js/build.php

just paste the javascripts into a post or panel.. done.


0 replies
J
Jock
J
Jock 10
  • Member, joined since
  • Contributed 116 posts on the community forums.
  • Started 15 threads in the forums
answered
Member

Just finished my RSS 2.0 feed. It is also validated, and it have a lot of the things. Even it have more things than sourcforge example.

http://sml2008.free.fr/feeds/index.php
Edited by Jock on 27-08-2008 23:21,
0 replies
K
KFJ
K
KFJ 10
With a paid licens.....
  • Member, joined since
  • Contributed 55 posts on the community forums.
  • Started 10 threads in the forums
answered
Member

Quote

Jock wrote:
Just finished my RSS 2.0 feed. It is also validated, and it have a lot of the things. Even it have more things than sourcforge example.

http://sml2008.free.fr/feeds/index.php

Something you want to share ?
0 replies
V
Voodoo-Publishing
V
  • Junior Member, joined since
  • Contributed 24 posts on the community forums.
  • Started 2 threads in the forums
answered
Junior Member

that looks good, Jock.. is it ready for the public?
0 replies
J
Jock
J
Jock 10
  • Member, joined since
  • Contributed 116 posts on the community forums.
  • Started 15 threads in the forums
answered
Member

Quote

Studio1031 wrote:
that looks good, Jock.. is it ready for the public?
Will see in future few days. This stuff depend from site to site. Just have xml bug and it was empty speace in one Maxx Forum category name.

I am now in middle of the MAXX forum RSS 2.0 version creation. It will be the same like news, just for forum with full last posts, including for example youtube embed code and etc.

Demo for Maxx Forum is here, of course it is not finish.
http://sml2008.free.fr/feeds/maxx_for..._forum.php

This is only test file without last posts inside, but I have other which display fully posts and it is validated allready now, but have some small bugs which I must fix.
0 replies
J
Jock
J
Jock 10
  • Member, joined since
  • Contributed 116 posts on the community forums.
  • Started 15 threads in the forums
answered
Member

Here is MAXX Forum version with full last post message, it is validated, but it have few small bugs which must be fixed.

sml2008.free.fr/infusions/forum/attachments/maxxinfusions/forumrss.jpg

So perhaps in few days, both this version will be in my download section.
Edited by Jock on 28-08-2008 16:37,
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 17 posts
  • Votes 0 votes
  • Topic users 10 members

10 participants

K
K
KFJ 10
With a paid licens.....
  • Member, joined since
  • Contributed 55 posts on the community forums.
  • Started 10 threads in the forums
S
S
www.postexus.com - Follow Postexus on Facebook.
  • Senior Member, joined since
  • Contributed 359 posts on the community forums.
  • Started 20 threads in the forums
J
J
Jock 10
  • Member, joined since
  • Contributed 116 posts on the community forums.
  • Started 15 threads in the forums
N
N
  • Junior Member, joined since
  • Contributed 22 posts on the community forums.
  • Started 1 thread in the forums
K
K
kemper 10
farm4.static.flickr.com/3057/2609887104_4470d79b05.jpg
  • Senior Member, joined since
  • Contributed 235 posts on the community forums.
  • Started 8 threads in the forums
L
L
www.fs-addons.net
FS2004/X Addons!
  • Member, joined since
  • Contributed 135 posts on the community forums.
  • Started 51 threads in the forums
  • Started this discussions
J
J
Josso 10
–––
Without faith, nothing is possible. With it, nothing is impossible
  • Senior Member, joined since
  • Contributed 309 posts on the community forums.
  • Started 1 thread in the forums
B
B
Basti 10
[PHP-Fusion Crew Member & Admin from June 2008 - December 2010]

http://basti2web.de - Support Site for my infusions
  • Veteran Member, joined since
  • Contributed 1,099 posts on the community forums.
  • Started 32 threads in the forums
V
V
  • Junior Member, joined since
  • Contributed 24 posts on the community forums.
  • Started 2 threads in the forums
P
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet