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...
View ArticleZend_Feed_Rss - I can echo but I can't do anything else?
I would like to retrieve some feed news from a given feed source, only if a specific tag is the case.I'm not getting it, because $category is not a string, hence strschr will not returned. (so I...
View ArticleZend_Feed_Reader behind a Proxy
am new to Zend and want to use the Zend_Feed_Reader class behind a Proxy.I've been told that I need "replace the default instance of Zend_Http_Client used by Zend_Feed_Reader using the setHttpClient()...
View ArticleZend_Feed_Reader Not supported Schema
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'...
View ArticleZend_Feed "description key is missing" [closed]
//CODE $entries = $model->fetchEntries(); $feedUri = '/rss/'; //link from which feed is available $link = 'http://' . $_SERVER['HTTP_HOST'] . $feedUri; $feedArray = array('title' => 'Student\'s...
View ArticleZend Framework : Incuding other controllers in index view
I am new to Zend FW. I am looking to write a simple feedparser in a controller named Feedparsercontroller's indexAction. but i want to display the parsed feed output as a widget on my index page. how...
View ArticleZend Feed with Custom namespace?
I am having a hard time creating a custom atom feed for my website using zend_feed class. Here is my FeedController class. Initially I tried to create a custom namespace in $feedArray but that doesn't...
View ArticleHow to use zend_navigation to populate zend_feed?
In the bootstrap file of each of my modules I am populating my Zend_Navigation instance so that I can create html/xml sitemaps, side-bar navigation, admin navigation and, now, I want to create an rss...
View ArticleRSS Namespaces using Zend_Feed_Reader
I'm having some problems with parsing RSS feeds with Zend_Feed_Reader, specifically when a RSS namespace is being used.The feed I'm trying to parse is the BBC News feed...
View ArticleHow do I get feed date with Zend Feed?
I'm parsing RSS feed. Everything works fine except I don't know how to get the feed date.foreach ($sql as $row) { try { $feed = Zend_Feed::import($row['url']); } catch (Zend_Feed_Exception $e) {...
View ArticleZend Feed: How to get the whole feed from a website
I'm using Zend Feed to get a feed from a website. When I run it I only get the 10 latest entries. Is there a way to get the whole feed from the website? All the post since the beginning?! MY code...
View ArticleZend_Feed access item - ATOM
Iam trying to read the "itunes RSS Feed". As far as i know it is ATOM based.Works fine: $feed = $this->getFeed(self::TOP300_PAYED); foreach ($feed as $item) { echo $item->name; }But i need the...
View Articlehow to create rss feed with autoupdate in Zend
I am quite new in Zend Framework and RSS too. I would like to create on my site RSS feed (of course available to the user in XML file). I have created RssController and corresponding view:...
View ArticleCreating 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...
View ArticleZend framework outputting the letter 'f' onto my page
I've downloaded the Zend framework stable build (1.11, I believe), uploaded to my servers, and added it to my php include path. My goal is to use the Feed and Feed_Writer modules to handle some RSS and...
View ArticleZend_Feed: getting the Image URL from a Feed
What is the correct way to go after items more than one level deep with the Zend_Feed library?How should the second to last line of code read? require_once 'Zend/Feed/Rss.php';$url =...
View ArticleWhy am I not getting the exception I expect in Zend Feed when a feed is...
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...
View ArticleZend Feed Writer And Media RSS (Yahoo)
Attempting to create a feed with Zend_Feed_Writer but need to include images. I checked and such support is offered by Media RSS (Yahoo) and their namespace: http://search.yahoo.com/mrss. Unfortunately...
View ArticleHow to get the actual LINK url property from Zend_Feed_Rss channel object
I'm trying to wrap my head around how to use Zend_Feed_Rss. According to the documentation, to get the link of the channel, you access it with the method $channel->link(). But when I do so, I get an...
View ArticleZend 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...
View ArticleZend_Feed entires and colon separated keys
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...
View ArticleZend_Feed: white screen of death on Production, works perfectly on Dev Server
A few weeks ago I noticed that the RSS feed on my live site was broken - I get a white screen of death. It had worked fine up until then. The rest of my site continues to work fine. Additionally the...
View ArticleConsuming atom namespaces with Zend_Feed_Atom
I'm have I hope a very simple question about Zend_Feed, but for some reason I can't work out how to use Zend_Feed_Atom.I'm trying to consume google shopping atom feed, which looks like the...
View ArticleZend_Feed_Reader exception: Read timed out after 10 seconds
I am using Zend_Feed_Reader to read feeds but I have a problem. At some feeds, I get this exception: Read timed out after 10 seconds and I want to reduce that time.So in the case Zend_Feed_Reader can't...
View ArticleDOMDocument cannot parse XML
I'm using Zend_Feed_Atom to get a feed from a website but I'm receiving this error:Message: DOMDocument cannot parse XML: DOMDocument::loadXML() [domdocument.loadxml]: xmlParseEntityRef: no name in...
View Article