I don't understand why my magpie rss isn't fetching an entire rss feed. Here's what my code looks like:
// test.php
<?php require_once('modules/magpierss-0.7.22/rss_fetch.inc');
$post = fetch_rss('http://torontoseoworkshop.com/blog/feed/');
echo count($post->items);
?>
If I put test.php in my ~/public_html/tsw/ directory, the last li...
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 retrieved exactly the same for both blogs, the difference comes after calling Magpie($rss_content).
Here's the XML PHP config from both serv...
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 module, there is only one output module available for any pipe. So I can't see how I would ever get more than one feed from a pipe.
The whole ...
How can I read the captions of a RSS feed from a given website? I have to use either Magpie or PHP.
...
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 25, 2010 6:09 PM
using php?
...
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, first, fetch the rss with curl functions, that allows proxy authenticating, but ....
are there any class to do this in a easy way, or ... does...
Hi all,
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 worried about duplication issues when running the cron job.
what is the best solution to avoid duplicate entries.... here is my ...
Hi all,
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 to description. Is there any one with a general function for detecting if rss item has image and extracting image url after its b...
Hi all,
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
...
Hi all,
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 within a class
function getImagesUrl($str) {
$a = array();
$pos = 0;
$topos;
$init = 1;
while($init) {
...
Hi all;
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 glance dashboard style thing.)
Now, like I said, this is pretty much my first time actually working with rss feeds. I've been usi...