zend-feed

Get Rss version by url in Php with Zend_Feed

I use Zend Framework to read an RSS feed is as simple as instantiating a Zend_Feed_Rss object with the URL of the feed : $feed = new Zend_Feed_Rss('http://rss.exemple.com/feed'); echo $feed->title(); This method doesn't exists echo $feed->version(); How I can get the version of Rss, like 2.0 or 0.92 ? ...

Zend_Feed Problem

//CODE $entries = $model->fetchEntries(); $feedUri = '/rss/'; //link from which feed is available $link = 'http://' . $_SERVER['HTTP_HOST'] . $feedUri; $feedArray = array( 'title' => 'Student\'s Movie Club - Upcoming Movies', 'link' => $link, 'description' => 'Upcoming Movies...

Why am I not getting the exception I expect in Zend Feed when a feed is misentered?

Basically, we have this here module that we offer to our users that want to include a feed from elsewhere on their pages. I works great, no sweat. The problem is that whenever users mishandle the feed link on their hands we have to manually remove the module from existence because Zend Feed crashes and burns the entire page just like any...

Zend_Feed entires and colon seperated keys

Hey everyone! I've created a function that consumes an RSS feed from Flickr using Zend_Feed. Unfortunately I am struggling to extract some keys! I can get the < title > and such by echoing $entry->title(); But how can I echo out something like < media:thumbnail >? I'm sure there's a completely simple way of doing this but I can't f...

Zend_Feed_Reader Not supported Schema

Hello, I'm using Zend FW and wanted to make a feed reader. I did the following: $feed = Zend_Feed_Reader::import('feed://blog.lookup.cl/?feed=rss2'); $data = array( 'title' => $feed->getTitle(), 'link' => $feed->getLink(), 'dateModified' => $feed->getDateModified(), 'description' => $...

Zend Framework - how to fix the path?

Q. How can i fix this Zend_Feed_Reader? My error: Could not load extension: JungleBooksusing Plugin Loader. Check prefix paths are configured and extension exists. Please kindly check the code from this link(because in stackoverflow paste code is very complex): http://gist.github.com/469387 Thanks in advanced ...

Creating a secured rss feed with Zend_Feed

I was wondering if it was at all possible to create a rss(or atom) feed with Zend_Feed that would be on a secured website (With Zend_Auth). How would users be able to subscribe to my feed? How would feedreaders handle authentification? Is there any pitfalls I should be aware of (one I can think of is users who use outlook, IE, and ot...