Ever since Yahoo Pipes service was shut down, I’ve been looking for a good alternative to merge my various RSS feeds. My website is composed of several sections using WordPress, Google Blogger and Tumblr. I have tried some free services out there but they were never as good as Yahoo Pipes. And without a good monetizing idea, those services too, died in the end. Leaving me in the lurch yet once again. Finally I decided to search out some code that would sit in my own web server and never have to worry about such services shutting down.
My first try was a code that I found called Feedcreator using magpie. It could handle feeds created by WordPress and Tumblr but not Google Blogger. I tried several workarounds including passing the Blogger feeds into Feedburner and inserting it back to Feedcreator, but it didn’t work.
Then it occurred to me that Simplepie may just get the job done. Currently I’m using it to combine my blog output onto my homepage. So it is just a matter of finding the code sequence. Unfortunately Simplepie site documentation weren’t very clear on how to do it, but I managed to eventually track down a few sites giving examples on how to get it done.
First off, the command code to output the combined RSS feed is:
enable_xml_dump(isset($_GET[‘xmldump’]) ? true : false)
This will dump the output as an XML formatted data to be later echoed out with other Simplepie commands. One of the author suggested using Feedburner to created a much nicer looking formatting after creating the RSS XML file which suits me just fine. Without much ado, here’s my example after modifying it to suit my needs. You may want to customize it further for your purposes. You will need to download the simplepie.inc file and placed it somewhere in your web server for this to work and of course a writable cache folder for simpiepie to store its temporary output.
<rss version=”2.00″>
<?
|