Ryan, Thanks for the reply! We're looking to truncate at sentences, not words or characters. If we can't truncate at sentences, words are the next best thing,...
I'm not quite clear on what you're trying to do based on your earlier description. SQL caching is not yet a supported feature in SimplePie (although you can...
Hi is there a set of demo code for the mobile reader anywhere, I'd like to use this to test things, as i'm not sure what I'm doing with this yet thanks dave...
Ryan, I've tried so many different combinations of preg_split, preg_match, and explode scripts and no go. I either get php errors or no changes to the content...
Brandt, Your preg_match function returns the match in $matches as an array. $s is left unchanged. Try adding: $s=$matches[0]; Or just return $matches[0]; HTH ...
Hi Ryan, Thanks for responding. I am trying to feed in RSS from all the sources I use (twitter, lastFM, digg etc) and show them on my home page I very rough...
Since yesterday 1. Dec afternoon, all my SimplePie based RSS-feeds - hundreds - give just Warning: curl_version() has been disabled for security reasons in...
Your web host has disabled all of the ways that SimplePie fetches feeds. I would talk to your host to see what alternatives they have for fetching remote data....
Pastebin is not working now. here is the code <?php /* Here is the sequence: 1. Initialize SP 2. Store required feed data into an array. 2. Sort array with...
I just came across SimplePie this afternoon. I am starting a new web project and want to know if SP is what I need to accomplish it. Here's what I want to do....
I am looking for a way to completely remove html links from descriptions. Some of the feeds I am using have like the "Email This" or "Digg This" link at the...
I use preg_replace to remove the username out of a Twitter feed that I have on my website. Is it possible to do this and have cache? I've tried to set the...
Would it be possible, Ryan, to include this as a feature in the next release of SP? It is a powerful feature and I am sure your audience/community would find...
Currently, if you use set_raw_data(), SimplePie assumes you have a local copy of the feed and doesn't cache it. Alternatively, you can use a standalone PHP5...
... Okay. ... SimplePie is only aware of ONE feed -- the one that came from Pipes. SimplePie can only parse out data that exists in the feed, and if Pipes...
I don't recall if I replied to this yet, but can you check your phpinfo() and let us know what version of libxml you have? Is it 2.6.x, 2.7.0, 2.7.1, or 2.7.2?...
It would appear that you're right. Looking through the code for get_enclosures(), we only grab the first one. Alternatively, you can use get_item_tags()...
Hey there, Wasn't able to figure this out anywhere. Is there a way to access the title tag headlines instead of the normal headline on the blog? "Item title"...