Tagged Questions

Magpie is an RSS and Atom feed parser written in PHP.

learn more… | top users | synonyms

1
vote
3answers
43 views

How to get <img> src from CDATA in RSS?

I am fetching data from RSS feed with Magpie. $rss[description] contains CDATA with html elements: <![CDATA[ <div> <a href='url'> <img src='img_url' alt='aaa' ...
1
vote
2answers
167 views

magpie rss and remember the milk feed url

So, I'm working for the first time with embedding a RSS (or atom, but right now I'm trying to stick to rss) feed from my Remember the Milk account in my own website. (Eventually, there will be an at a ...
1
vote
1answer
334 views

Best way to fetch remote RSS through authenticated proxy and parse it

I'm trying to get a remote RSS through proxy and parse it. I'm using magpierss, but it doesn't allow reaching internet through a proxy (or I don't know how to do it). I assume the option is to, ...
1
vote
2answers
432 views

Split an RSS feed into separate feeds

I'm trying to find a way to split a single RSS feed into separate feeds based on keyword matches. Yahoo Pipes was my first thought, but I couldn't find a way to do it. Although Pipes has a split ...
0
votes
1answer
20 views

Retrieving Data From NOT Correct RSS

I receive an XML file with structure like this: <items> <item> <id>...</id> <title>...</title> <image>...</image> </item> </items> I ...
0
votes
0answers
19 views

magpierss reading feed with duplicate tags

Hi I have some xml that looks like <item> <title>Multi-Drop Drivers Required</title> <link> http://www.jobsinkent.com/job404543/multidrop_drivers_required.html </link> ...
0
votes
0answers
126 views

Magpie PHP parsing - You don't have permission to access this server

I've jumped through all the other hoops, but can't overcome this one. Magpie_debug immediately produces the error when trying to parse any URL. I'll keep looking, if i find an answer I'll post. ...
0
votes
1answer
300 views

Magpie RSS not displaying content

I have a blog's RSS feed that I am trying to display on another website using Magpie RSS parser. It is correctly fetching the 'link' and 'title' tags, but will not fetch the content of the blog's ...
0
votes
2answers
315 views

MagpieRSS: Failed to fetch error

When my script parses an RSS feed from my local Apache server, it parses fine but when I upload script to the remote hosting server it gives the error: Warning: Magpie RSS: Failed to fetch (url) ...
0
votes
1answer
310 views

RSS Feeds and image extraction indepth

I have spent time trying to solve this problem and this is as far as ive got. basically im trying to pull images from rss feeds. i use magpie to process the feeds as shown below.. this snippet is ...
0
votes
2answers
171 views

Turning Magpie Cache off

Im using magpie to pull rss feeds from several websites. im going to run a cron job to do this so would like to disable caching. im using php ofcourse and was wondering how i can do this. Thx
0
votes
1answer
671 views

Pulling Images from rss/atom feeds using magpie rss

Im using php and magpie and would like a general way of detecting images in feed item. I know some websites place images within the enclosure tag, others like this images[rss] and some simply add it ...
0
votes
2answers
197 views

rss to sql using magpie and cron job

Basically, i want my site to aggregate a lot of rss feeds and store them in database during cron job. i use magpie to parse the rss into arrays...everything should seem straight forward although im ...
0
votes
1answer
231 views

RSS time format to human readable format

I'm using MagpieRSS to parse some Craigslist feeds. The problem is the publish dates for craigslist posts are in this format: 2010-02-25T18:09:38-06:00 How can I convert that to Thursday, February ...
0
votes
2answers
42 views

RSS feed captions

How can I read the captions of a RSS feed from a given website? I have to use either Magpie or PHP.
0
votes
1answer
72 views

Magpie removes angle brackets from RSS feed

I've found two WP installs on different servers, same WP version. Magpie returns different RSS content from same feed, one of the blogs returns the contents with angle brackets removed. The XML is ...
-1
votes
0answers
31 views

What is the cleanest method to import multiple RSS feeds, using Magpie RSS?

I have many different RSS feeds to merge together, however I am wanting to preserve the meta data of what each RSS item is about eg name -> $title title -> $title I want to normalize / ...