RSS feed from URL list

Status
Not open for further replies.

guerilla

All we do is win
Aug 18, 2007
11,426
428
0
No
I want to make 10 item (or less) RSS feeds from lists of URLs.

I can supply the lists as TXT or CSV or whatever.

Anyone know any services/software out there that do this?

BTW, the URLS are from a mix of static sites without feeds.
 


I scored a copy of Scuttle+. I will bookmark my links to generate my own RSS feeds of random URLs.
 
Youcan use xfruits dot com to combine multiple RSS feeds into single RSS feed and use Yahoo pipes to filter the feeds.
 
I think you should be more clearer in what you want.

do you
a) want to create feeds based on another sites content (that doesn't have rss), or
b) want to create feeds from your own data.

btw: whats the point of creating a feed if you don't intend to display it? It you want to shift data around use xml/webservices etc.

ps: no need to point out that rss is xml - I am talking about structure
 
  • Like
Reactions: guerilla
I assume you mean that you have some URLs and you want to turn them into an RSS feed?

If that's the case then there is the proper way of doing it and then there is the dirty and quick way of doing it.

I did this before and what I did was just create one from scratch. Here is how.

1) I created a file named feed.php
2) I found an existing Rss2.0 feed and replaced everything that could be made into a variable, such as the feed title, feed link, etc.
3) I pasted the changed file in and added php to echo the variables into the places where they need to appear.
4) for the item enclosures, I put them into a loop and looped through a list of urls. That list of URLs could be a txt file or CSV, if you wanted.

In the end, I put the php file up on my server and the output validated. I call this the quick and dirty way. I am sure there are other better ways to do it, but mine worked for me.
 
  • Like
Reactions: guerilla
Status
Not open for further replies.