 |
| Coding Forum Problems with your code? Discuss coding issues, including JavaScript, PHP & MySQL, HTML & CSS, Flash & ActionScript, and more. |
|
 |
06-15-2009, 04:23 AM
|
#1 (permalink)
|
|
Contributing Member
Join Date: 08-16-08
Posts: 430
|
Rss feed reader
Hi
do you know of any good script that would enable me easy instalation and that would then enable me to add rss feed and it will then transform them into html pages?
Thanks for your help
__________________
All about Economy | Play games on 321games.net
|
|
|
06-15-2009, 04:53 AM
|
#2 (permalink)
|
|
Meeow!
Join Date: 04-13-07
Location: Romania
Posts: 3,235
Latest Blog: None
|
There are so many you can choose from!
You can check mine for example: http://june-js.com/blog/?p=103
__________________
...to be continued
|
|
|
06-15-2009, 04:59 AM
|
#3 (permalink)
|
|
Contributing Member
Join Date: 08-16-08
Posts: 430
|
Hi
thanks. Your's seem very nice, but to difficult for me. I do not know any php so i need one, that is very simple to handle with nice CMS behind it. SOmething like wordpress lol, simple as hell, but nicely optimized and stuff like that.
I would really appriciate if you know of any good ones for as n00bs lol 
__________________
All about Economy | Play games on 321games.net
|
|
|
06-15-2009, 05:36 AM
|
#4 (permalink)
|
|
Meeow!
Join Date: 04-13-07
Location: Romania
Posts: 3,235
Latest Blog: None
|
If this is difficult:
PHP Code:
<?php
require_once "class.FeedReader.php";
$feed = "path-to-xml-file";
$data = array();
try {
$main = new FeedReader($feed);
# Check to see if the feed was successfully loaded
if ( ! $main->loaded )
throw new Exception('The feed could not be loaded');
# Get data
else $data = $main->GetAll();
}
# Display or log error
catch(Exception $e) { exit($e->GetMessage()); }
if (count($data) > 0)
{
foreach ($data as $entry)
{
echo 'build your output html here';
}
}
?>
then...I don't know what to say, really...
__________________
...to be continued
|
|
|
06-15-2009, 05:52 AM
|
#5 (permalink)
|
|
Contributing Member
Join Date: 08-16-08
Posts: 430
|
Yes it is... I would like to add many feeds and then i want the script to create custom pages for each feed and maybe show them all on index page...
I want it to be simple as loging into admin pannel and pasting link into a field and pressing add or something
I just do not know the code m8, sory
__________________
All about Economy | Play games on 321games.net
|
|
|
06-15-2009, 07:34 AM
|
#6 (permalink)
|
|
Moderator
Join Date: 01-23-07
Location: Buenos Aires, Argentina
Posts: 1,259
|
Well, you asked for a script so we programmers usually come up with code
If you can't code maybe instead of a script what you need is a content management system.
Check out Joomla, Wordpress, those allow you to set them up without any programming skills and have plugins or addons to aggregate feeds.
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
|
|
|
06-15-2009, 11:01 AM
|
#7 (permalink)
|
|
Contributing Member
Join Date: 08-16-08
Posts: 430
|
can you please give me a link to wordpress plugin that agregate feed well? I was looking for one for a long time till now...
__________________
All about Economy | Play games on 321games.net
|
|
|
06-15-2009, 11:41 AM
|
#8 (permalink)
|
|
Moderator
Join Date: 01-23-07
Location: Buenos Aires, Argentina
Posts: 1,259
|
I think one of these should do it:
http://wordpress.org/extend/plugins/feedwordpress/
http://wordpress.org/extend/plugins/...ch-aggregator/
Not sure though because I don't use WP and found them through searching.
Tip for searching,
In the plugin search page try using the keywords: aggregate, syndication, feed, rss and some interesting results will come up.
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
|
|
|
06-15-2009, 11:42 AM
|
#9 (permalink)
|
|
Super Moderator
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 3,292
|
Newbe,
Wordpress creates RSS feeds as part of the blogging software.
If you choose a different CMS, they probably already have this feature also, without looking for a plugin.
By your title and question, I think maybe you are a little confused about RSS?
RSS reader: Software that reads the RSS feeds from websites and blogs. This can be a piece of software installed on your machine or an online service like Google's RSS reader.
RSS feed: a file on your website/blog that shows your latest updates to the website/blog. The RSS feed readers use this file to keep up to date with the website/blog.
|
|
|
06-15-2009, 11:45 AM
|
#10 (permalink)
|
|
Moderator
Join Date: 01-23-07
Location: Buenos Aires, Argentina
Posts: 1,259
|
Quote:
Originally Posted by htmlbasictutor
Newbe,
Wordpress creates RSS feeds as part of the blogging software.
If you choose a different CMS, they probably already have this feature also, without looking for a plugin.
By your title and question, I think maybe you are a little confused about RSS?
RSS reader: Software that reads the RSS feeds from websites and blogs. This can be a piece of software installed on your machine or an online service like Google's RSS reader.
RSS feed: a file on your website/blog that shows your latest updates to the website/blog. The RSS feed readers use this file to keep up to date with the website/blog.
|
I think he's not looking for a tool to create feeds, but rather to aggregate them from different websites into his. I'm not sure WP vanilla has that feature out of the box.
__________________
Hades,
Ancient god, King of the Nether World, and Guardian of the Dead.
...and on my free time I'm also a web developer, contact me if you need one!
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Hybrid Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -7. The time now is 10:26 AM.
© Copyright 2008 V7 Inc Powered by vBulletin Copyright © 2000-2009 Jelsoft Enterprises Limited.
|
|
|