Tagged Questions

SimplePie is a PHP library intended to make it ridiculously easy for people to manage RSS and Atom feeds.

learn more… | top users | synonyms

4
votes
3answers
322 views

PHP: Ignoring errors and notices in a specific class

My site is completely custom, as such I like to know when I have poorly written code. I use set_exception_handler and set_error_handler to use custom classes to log errors to a file. This includes ...
2
votes
1answer
64 views

Best Practice for Skipping Duplicate Entries in MySQL

I have written a feed aggregator before but am trying to optimize it a bit. In the past, using simplepie (php class) to parse the feeds, I have used the get_id() function for each feed item to return ...
2
votes
3answers
195 views

PHP way of parsing HTML string

I have a php string that contains the below HTML I am retrieving from an RSS feed. I am using simple pie and cant find any other way of splitting these two datasets it gets from <description>. ...
2
votes
1answer
384 views

Using multiple feeds in simplepie with codeigniter

I'm trying to get simplepie to loop through a few rss feeds using codeigniter but I can only get it to display the feed items from the last feed in the array. I think it is to do with the foreach ...
2
votes
4answers
816 views

SimplePie not parsing flickr feed

I am trying to use SimplePie to pull a group pool flickr feed: $feed = new SimplePie(); ...
2
votes
2answers
295 views

SimplePie html rssfeeds Codeigniter

I wanted to ask, I have a div that I would want to place RSS feeds from the BBC or CNN. Now that works but I wanted to paginate the feeds that come in, display 5 at a time with the others showing when ...
1
vote
1answer
15 views

Does simplepie automatically remove invalid links(image and hyperlink)

I am working on a web application and want to use simplepie for parsing rss feeds(lots of). One main problem is that I want to know if simplepie automatically remove all the links while parsing rss ...
1
vote
1answer
45 views

Change in APC for Magento stops SimplePie from working

We have been using SimplePie on our Magento install to pull our blog posts into our home page without issue for several months now. Due to some other issues with Magento, we had our web host turn off ...
1
vote
2answers
99 views

simplepie not parsing google news rss feed

This code works perfectly with any other rss feed but not with google news feeds. I do not know what I am doing wrong, I think it's some bug. I keep getting this error when I try to read google news ...
1
vote
3answers
185 views

Checking Valid RSS feed URL

I have decided to use SimplePie to parse RSS and Atom Feeds. What I want to do is that let people to input RSS and Atom Feeds URL through text fields. What If they put invalid RSS and Atom Feeds? I ...
1
vote
4answers
75 views

Include a php library and cant access it from another php page

Im loading the php rss parsing library simplepie onto my site and i include it in the header.php file like so: <?php // Make sure that SimplePie is loaded require_once('inc/simplepie.inc'); ...
1
vote
2answers
212 views

Very fast parser (php) for huge xml-feeds

I need a very fast php parsing implementation for parsing huge xml-feeeds on the fly, it would be very important that the parser starts parsing when the data comes in, not only when the whole feed is ...
1
vote
1answer
128 views

Pulling <s:variant> from atom feed with simple pie

How can I get the title tag from the s:variant block below using simple pie? <s:variant> <id>product_variants-96590662</id> <title>Default Title</title> ...
1
vote
1answer
151 views

SimplePie Problem

I got problem with SimplePie while retrieving mostly feeds. At first, at says to use force_feed() But when i enabled force_feed(), it says again: This XML document is invalid, likely due to ...
1
vote
1answer
332 views

How to filter/block RSS feed items with SimplePie

I've got a google news feed I display in my WordPress site, using the following code: $feed = fetch_feed($rss_url); // specify the source feed $limit = $feed->get_item_quantity(20); // specify ...
1
vote
1answer
568 views

Display RSS Image with SimplePie

I'm setting up a page which grabs the first entry from multiple RSS feeds. I'm running into a lot of RSS feeds that are formated differently. I'm using SimplePie to parse the feeds. The current feed ...
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 ...
1
vote
1answer
301 views

Simplepie - fetch feeds from database

I want to fetch multiple feeds from the database and in so doing fetch all new content from those feeds it works but there is a problem and I have no idea what's causing it, this is the code: ...
1
vote
3answers
1k views

Using SimplePie with CodeIgniter and XAMPP

I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer. I am trying to make use of SimplePie. I followed all the instructions I could find: a copy of simplepie.inc is in my ...
1
vote
1answer
494 views

Wordpress: How to include a custom field in an array (SmplePie)

Wordpress 2.8.4, Simple Pie Plugin 2.2.1 I'm having this: <?php echo SimplePieWP(array( ...
1
vote
2answers
353 views

Is there anything in the Django / Python world equivalent to SimplePie Plugin for Wordpress?

I know that SimplePie itself is derived from UFP, but the features I'm wondering about are the post-processing features that are available in SimplePie for WordPress plugin: ...
0
votes
1answer
12 views

Keeping links in SimplePie description

I am using SimplePie to feed blog entries to a non-Wordpress website. By default it strips out all HTML tags, but there is a way to keep them in, by inserting this code near the top of your page: ...
0
votes
1answer
31 views

Latest simplepie + codeigniter integration not working

I have the latest simplepie (1.2.1 I believe) and CodeIgniter 2.1.0. I converted simplepie.inc into simplepie.php and put it in the library folder. And followed instructions on ...
0
votes
2answers
25 views

Error with date.timezone

Recently I have been getting the following error on my feeds in Simplepie: Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the ...
0
votes
1answer
18 views

Using SimplePie with a custom element?

I have a sample feed like so http://bingogs.bingosys.net/extGetRooms.php?NW=Plus&C=GBP Sample XML <ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql"> <ROOM id="20" maxplayers="0" ...
0
votes
1answer
42 views

Optimsed Database Inserts with RSS Feeds uisng SimplePie - need ideas

So basically I have just benchmarked my update_feeds controller and found that the amount of sql queries that are run are shocking. I am looking for a way to optimise the process of fectching multiple ...
0
votes
0answers
37 views

RSS feeds display with PHP using SimplePie

My shared hosting is running with PHP 5.2.17 I am trying to display an external feed on my webpage. I am using SimplePie. But nothing is appearing not even the error. I am using the following code: ...
0
votes
1answer
65 views

Having trouble trying to display multiple simplepie rss feeds, as well as one merged

So here is the main simplepie code I'm trying to use, and I don't really understand how to initialize the other feeds I have set up. Basically what I'm trying to do is place each of those $feeds into ...
0
votes
0answers
57 views

Filtering SimplePie result by custom tag

Using SimplePie, I am trying to display a filtered list of entries from this feed (url: http://feeds.washingtonpost.com/rss/rss_the-insiders). This feed has two "contributors" - I'd like to filter ...
0
votes
1answer
67 views

SimplePie RSS Not Getting pubDate

I am using SimplePie RSS to aggregate 4 feeds and they are being sorted by the date (descending) and in the code it is set to echo out the pubDate but it is not showing it. It just prints a blank ...
0
votes
0answers
39 views

SimplePieWP feeds and how to order them alphabetically

I have taken over another designer's site and noticed they are using the SimplePie plugin for Wordpress to feed in some RSS data. I'm not familiar with this method and I'm trying to figure out how to ...
0
votes
1answer
114 views

How can the screen be updated periodically for yahoo weather/simple pie?

I am using yahoo weather feed and simplepie to get weather for my digital display. Since it is a website run on a screen, I can't refresh the browser all the time manually. I am just wondering is ...
0
votes
1answer
59 views

Using IF-ELSE statements to alter elements in a SimplePie feed based on their source

I'm using SimplePie to combine various RSS feeds, and I want to control the output of each individual feed item based on the source for that item. My ultimate goal is to be able to control the content ...
0
votes
0answers
151 views

SimplePie feed grabs images, need if statement from item with no images

I have a SimplePie feed that grabs the title and image of an item/post on my website that works great. The only issue is there are posts that don't have images, they categorized as "flash". Right now ...
0
votes
0answers
176 views

Accessing custom tags with simplepie on homeaway feed xml atom

I'm trying to access the custom tags on an XML feed located at https://partner.homeaway.com/aggregator/homeaway/partners/search?partnerId=cj_all&format=cjAtom&affiliateId=5373626 with ...
0
votes
0answers
23 views

Only parse specific tags

I am currently using SimplePie to parse a feed. It would be enough for me to gather the id-tag of each entry, so how do I tell SimplePie to not parse whole entries but only the id tag?
0
votes
1answer
38 views

Category results by time of publish?

I'm using simplepie with codeigniter to fetch lots of feeds from multiple sites. I want to category all results by time of publish.. Such as published in 5 minutes, 15 minutes, 30 minutes, 1 hours, 2 ...
0
votes
1answer
179 views

Images from Simplepie feed?

I've installed Simplepie to syndicate blog posts from blog.domain.com to domain.com. I'm custom-coding the actual feed items to give them individual styling, etc. What I'm trying to do is create ...
0
votes
1answer
66 views

What is difference between RSS links?

PHP, reading RSS Feeds. My codes works fine but NOT for all RSS links, for example: Error Making Links http://stackoverflow.com/feeds/tag?tagnames=php&sort=newest ...
0
votes
1answer
93 views

Why do Google News feeds have such strange structure?

I'm trying to incorporate a google news feed in my website (Using the built-in SimplePie functionality of WordPress). However, the default feed gets rendered in a strange table structure. Sure ...
0
votes
1answer
132 views

Process Google Bookmarks Feed in SimplePie

I want to process my Google Bookmarks feed using SimplePie. I can access a feed at https://www.google.com/bookmarks/find?q=&output=rss&num=10000 But I obviously will need to be logged in for ...
0
votes
1answer
185 views

Strange warning when trying to extend class

I started getting strange warnings, after extending a class that extends another Event_Feed_Item > My_Feed_Item > SimplePie_Item - Cannot extend from interface 'SimplePie_Item' - Implementors ...
0
votes
0answers
143 views

simplePie doesnt sort multi-feeds by date?

According to their documentation, it should sort multi-feeds by date automatically. But not sure why, it is just not working for me. Please take a look at the test url: ...
0
votes
1answer
139 views

Simplepie and slash:comments

I use SimplePie to display an RSS Feed on my Page. Now I want to show the number of comments. The RSS: <slash:comments>0</slash:comments> How can I show this with Simplepie?
0
votes
1answer
75 views

What set_item_limit exactly does in Simplepie?

i want to ask something specific. I have read the SimplePie manual but i am still confused. I am trying to mix items from different feeds but because i am passing the feeds urls through a random ...
0
votes
1answer
549 views

Parse custom tags from RSS/XML using SimplePie

I've just installed SimplePie to parse my RSS feeds to display on my site. I've tried their tutorial for grabbing custom XML tags, but things aren't working out. The custom tag is: < ...
0
votes
2answers
332 views

how to pass values from a php script to another dynamically?

i want to pass a url value from a php script to another.I have a database in which i have stored some feeds.I have given some weight values to these feeds and a php script grabs a feed url randomly ...
0
votes
2answers
618 views

HTML5, CSS3 columns

Hay all im building a news aggregator with SimplePie, the SP elements are working fine but I would like to have the feeds that it pulls in displayed in columns across the page using HTML5 and CSS3. I ...
0
votes
1answer
59 views

Using Light box with SimplePie

Im working on a project that uses SimplePie to to pull in a number of news feeds which is working great, but I would like the SP links to open the page on site in a LightBox, how can I do this? The ...
0
votes
2answers
736 views

Only show images from an RSS feed with PHP

I'm attempting to parse an rss feed to display images only. I am using a generic wordpress feed and would like to strip out everything that isn't an image. I've been playing around with simplepie and ...

1 2