SimplePie is a PHP library intended to make it ridiculously easy for people to manage RSS and Atom feeds.
0
votes
0answers
29 views
jQuery to detect what file type attribute, then parse it into appropriate tags
I have a script parsing my RSS feed into a Wordpress blog format, but the element tag is running amuck.
Is there a way to filter through the parsed RSS to look for tags containing jpg and then change ...
0
votes
0answers
23 views
codeigniter simplepie insert rss to db with cronjob
I'm trying to insert the rss feed with the simplepie and ci. i just intergrated the simplepie with ci which pulls the rss from the url. And now i m stucked in creating the cron job. So please show me ...
0
votes
1answer
14 views
Default location of simplepie cache
I am using fetch_feed() to parse RSS feeds. fetch_feed() does auto caching.
How can I test if my feeds are being cached with the correct time interval? and where is the default location of the cache?
...
0
votes
1answer
44 views
Stop WordPress fetch_feed from stripping anchor tags
I am using the WordPress fetch_feed function to pull in some Tweets. All works nicely but all html tags are stripped from the content. I would like to stop anchor tags from being stripped but just ...
0
votes
0answers
60 views
Craigslist RSS Poll Limit
I wrote a PHP code snippet which uses the SimplePie library to poll and parse RSS from a single location on craigslist.org . What is the maximum times per hour(or day, whatever) I can poll without ...
0
votes
0answers
24 views
If $feed->error(), get cached version
My SimplePie setup (here) is having an encoding problem with one of the feeds (here). This problem is persistent, so I'd like to make a fallback. Is there a SimplePie-function to force the script to ...
0
votes
1answer
55 views
Successful AJAX command not returning new SimplePie generated HTML (from RSS Feed) to the browser
I'm working on creating an AJAX powered RSS Feed. It is a single pane similar to Google Reader with a list of feeds on the left and the feed content on the right. When you click on any of the feeds ...
0
votes
1answer
40 views
Parsing Custom node value through SimplePie
I am parsing yahoo media rss feeds through SimplePie library.
I had a need to add custom node named <category> as a child node to <title>.
Now I need to parse the content of that node ...
0
votes
0answers
34 views
RSS - SimplePie - keeping older cache articles
I have a simple SimplePie script working here fine to retrieve RSS feeds.
http://www.oil-gas-prices.com/
the problem is , SimplePie only caches what is there at the feed at that moment. Any newer ...
1
vote
1answer
28 views
simplepie: use my own thumbnail per feed in a multifeed page
I've been looking everywhere but haven't found the answer to the question: How can I use my own thumbnail per feed in a multifeed page? If I've overlooked the answer it would be due to the wrong ...
1
vote
1answer
59 views
SimplePie Pagination / Cache
I'm trying to understand the cache'ing features of SimplePie on linux. It never tells us to create a separate mySql database for the RSS feeds, so i'm guessing all the cache is done locally. (in the ...
0
votes
2answers
139 views
PHP - special character (euro sign) not displayed correctly (RSS feed/SimplePie)
I am using SimplePie (v1.3.1) to display a RSS feed on a webpage. One of the titles contains a euro (€) sign and it is displayed as € on the page. When I use the SimplePie's demo on their website it ...
0
votes
0answers
75 views
Adding features to RSS reader written in PHP [closed]
I'm developing a (Open Source) RSS Reader in PHP that uses SimplePie to parse RSS. Currently it loads feeds from news.ycombinator.com and displays it. I wish to add features like
Load new feeds ...
0
votes
1answer
110 views
Simplepie RSS - i just need to get the image URL within the description to display as a thumbnail [duplicate]
How can i get the image from the description node of an rss feed. I need to get the URL to the image so that I can display it as a thumbnail next to the title of the article.
0
votes
1answer
43 views
Read NTLM-authenticated feed with SimplePie or similar?
Inside our firewall, I am trying to use SimplePie to work with RSS feeds from various platforms used by my company. I am not having any luck reading SharePoint RSS with SimplePie. Our SharePoint is ...
-1
votes
2answers
51 views
(PHP) Pre-defined string to run through one function
I'm currently designing a page, with 20 boxes, where each box represents an RSS feed, using simplepie as my parser.
Currently the script calls the first image from each feed, discards the rest and ...
0
votes
1answer
20 views
How to use SimplePie sort_items()? Getting static method error
I'm trying to alpha sort a single feed. When I use SimplePie's sort_items() I get the following error:
*Fatal error: Cannot make static method SimplePie::sort_items() non static in class ...
0
votes
1answer
128 views
Get youtube thumbnail simplepie
So I'm trying to get a thumbnail of a youtube video in simple pie, my problem is that the get_thumbnail() function doesn't seem to be pulling it because the get_enclosure function seems to be ...
1
vote
1answer
78 views
SimplePie multiple feed demonstration code doesn't work. What should I use instead?
I am trying to figure out why the code posted on the SimplePie website for displaying multiple feeds doesn't work. Specifically, this code example:
...
0
votes
1answer
86 views
Avoid merging/combining multiple feeds with Simplepie?
Here is my problem. I'm using Simplepie to fetch rss feeds. On the same page I'm trying to display two rss feeds (e.g. in two different columns). The two feeds are from the same domain (but I'm not ...
0
votes
0answers
42 views
Creating a custom cache class for Simplepie
I'm trying to extend the SimplePie cache as per the instructions given here: http://simplepie.org/wiki/reference/simplepie/set_cache_class
In the custom cache class, I want to store the Feed items in ...
0
votes
2answers
131 views
Can't Find simplepie.inc in Version 1.3.1
I am trying Simple Pie for the first time and I'm running into a problem. I downloaded the new 1.3.1 version and unzipped it. I set up everything according to the instructions (created the php and ...
0
votes
1answer
37 views
Random sort for SimplePie
I'm looking specifically to randomly sort all SimplePie articles from a default installation. (no WordPress attachments or anything)
I'm not looking for any custom sorting options, just a ...
0
votes
1answer
84 views
SIMPLE PIE - Get Images in a particular rss feed [duplicate]
I am trying this feed http://servicios.elpais.com.uy/formatos/rss/index.asp?seccion=ultmom
throw the simplepie demo page and it works great.
I can get a lot of info of this feed, but I dont know how ...
0
votes
1answer
38 views
Simplepie set_feed_url feed
and thanks in advance for your help. I'm using Simplepie to try to bring this feed:
http://www.p2rx.org/webservices/rssNews.cfm?Type=Tribal&getall=true
into this page:
...
0
votes
0answers
72 views
I am looking for a solution on how to sort multiple google calendar feeds using simplepie and the simplepie google addon
I am looking for a solution on how to sort multiple google calendar feeds using simplepie and the simplepie google addon.
$feeds = new SimplePie_GCalendar();
$feeds->set_feed_url(array(
...
0
votes
0answers
40 views
Storing SimpePie feed in cookie/session/variable
I'm trying to build an simple RSS reader using SimpePie.
The way this is set up now is that at home.php I can add/remove/change urls to five different simpepie feeds. These input fields sends the ...
0
votes
0answers
38 views
Can I do this with SimplePie? [closed]
I'd like to combine many RSS feeds into a single one. It seems as though SimplePie can do this. What I'm curious about is whether or not, with a little script hacking, if it can change the article's ...
1
vote
1answer
247 views
How can I pull media:thumbnail from an RSS feed with SimplePie and fetch_feed()?
I have two separate WordPress installs – I will call one Site A, and the other Site B. I want to pull the feed from Site B onto Site A, using fetch_feed(). I also want to include a thumbnail image. ...
0
votes
1answer
115 views
SimplePie parsing to Find Youtube Video link
I'm using SimplePie to parse our church RSS Feed which contains weekly sermons, both audio and video. I'm able to get the title and mp3 link, but having a difficult time getting the youtube link. ...
0
votes
2answers
143 views
SimplePie sorting multiple feeds - no time/date stamp, no sorting?
Is there a way to force an array of feeds to sort on date, even if one feed is missing a time/date stamp?
If I understand correctly, one bad feed in the list messes up sorting. From the description ...
0
votes
1answer
25 views
SimplePie RSS - get_language in NULL
Hi i use SimplePie in this way:
$feed = new SimplePie();
$feed->set_feed_url( array("feed.xml", "feed2.xml") );
$feed->enable_cache(false);
$feed->init();
$feed->handle_content_type();
...
2
votes
1answer
131 views
Why am I getting memory leaks in SimplePie when using $item->get_permalink()?
I'm using SimplePie with PHP 5.3 (with gc enabled) to parse my RSS feeds. This works well and without problems when doing something like the following:
$simplePie = new SimplePie();
...
0
votes
0answers
83 views
Use simplePie to show comments numbers for RSS feeds
I am trying to customize a Wordpress plugin that uses simplePie to pull in an RSS feed list. I would like to add the ability to show the number of comments on RSS feed posts.
The comments are ...
0
votes
1answer
47 views
Simple Pie 1.3 Keep Original pubDate?
I'm using Simple Pie 1.3 for a simple news stream.
Sometimes websites, like ESPN, will update stories constantly. This changes the pubDate and pushes them to the top of my feed.
Is there anyway to ...
1
vote
0answers
22 views
Fetch specific Blogpost data using Simple Pie
I want to fetch specific blog post URL data using Simple Pie.
for ex.
http://abc.com/2012/06/testing.html
I have tried but it is fetching the Original feed data.
0
votes
1answer
75 views
Get element in the channel of the feed with SimplePie in Wordpress?
How should I use get_channel_tags() or what function should I use of SimplePie to get totalResults of YouTube rss playlist or other element/attribute in the channel/header section of the feed?
...
0
votes
1answer
50 views
php/html automatically creating new line between rss posts?
My goal is to create a dynamic list of links next to each other (not on top of each other). So far I have the links outputting correctly using Simplepie and an Atom datasource but for some reason my ...
1
vote
0answers
102 views
How to use SimplePie image handler
SimplePie is an open source RSS parser. Evidently, SimplePie can cache images from RSS feeds it processes. But I don't know what to make of the documentation.
The example code looks like this
$feed ...
0
votes
0answers
138 views
RSS WordPress SimplePie claiming valid URL as invalid
I'm trying to load a RSS feed with Wordpress's built-in SimplePie.
include_once(ABSPATH . WPINC . '/feed.php');
$rssURL = 'http://missionstkitts.blogspot.com//feeds/posts/default';
$rss = ...
0
votes
1answer
59 views
CMS to update just one section of an existing site
say I have a static site that contains such page:
http://example.com/events.php
I'd like to use a CMS in order to update only that page in a blog-fashion, i.e. multiple articles, pagination and ...
0
votes
1answer
75 views
WordPress RSS error: “The file simplepie.php could not be found.”
I'm trying to include an RSS feed in my blog using fetchfeed() and loop through the items, in sidebar.php. Instead of the feed, I get this text "The file simplepie.php could not be found." I searched ...
0
votes
0answers
99 views
SimplePie Getting an invalid XML document
I am using a very cool php library(whatever it is called) called SimplePie. I am using the latest version.
I have this code:
$url = 'http://www.seobook.com/feeds.shtml';
...
0
votes
1answer
57 views
Display video with simplepie through wordpress?
I am showing a wordpress feed through this client's site, http://www.redvaultproductions.com/Latest.php, but videos do not show within the posts.
Notice the second (when I wrote this) post "Mount ...
0
votes
1answer
52 views
How is this RSS link encoded?
I'm working with Simplepie to create a simple RSS aggregator. I've come across this feed (http://feeds.washingtonpost.com/rss/linksets/opinions/george-will) that I want to add into my aggregator. For ...
0
votes
0answers
62 views
Simplepie fails to import a feed, but the error is blank
I can import from here without a problem:
http://www.nytimes.com/
But some URLs fail. Why?
I would like to import from a page like this:
http://www.truthinaging.com/
I am assuming that I can rely ...
0
votes
1answer
90 views
How to get more historical feeds from simplepie?
Seems simplepie has a limit of 25 feeds on set_item_limit(). Is there a way to get more historical feeds from simplepie? I know google feed api has a limit of 250, but I cannot easily integrate it in ...
1
vote
1answer
109 views
Fetching, Detecting Changes in RSS feed
Currently an application I made in PHP/Codeigniter uses the SimplePie library to parse feeds. There is one main external feed it fetches that it checks every 5 mins for new items using a cron job. For ...
1
vote
2answers
99 views
Simplepie is breaking when i'm on a live server compare when i'm working on localhost(xampp)
I get this error
This XML document is invalid, likely due to invalid characters. XML error: not well-formed (invalid token) at line 35, column 44
when I'm doing this one on my live server, but when ...
0
votes
0answers
105 views
SimplePie parsing huge XML file causes Memory Leak
I'm using a very cool application called SimplePie, the problem with that is when I'm parsing this very huge XML file http://feeds.feedburner.com/HubSpot, which is about 10Mb in size, when it starts ...


