Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
128 views

Zend 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 ...
2
votes
3answers
586 views

Zend_Feed entires and colon seperated 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(); ...
2
votes
1answer
201 views

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 ...
1
vote
1answer
44 views

Zend_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 = ...
1
vote
0answers
95 views

Zend 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 ...
1
vote
1answer
200 views

Zend_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 ...
1
vote
1answer
304 views

Zend_Feed “description key is missing”

//CODE $entries = $model->fetchEntries(); $feedUri = '/rss/'; //link from which feed is available $link = 'http://' . $_SERVER['HTTP_HOST'] . $feedUri; $feedArray = ...
0
votes
0answers
33 views

Zend_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 ...
0
votes
1answer
115 views

RSS 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 ...
0
votes
2answers
96 views

How 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 ...
0
votes
2answers
162 views

Zend_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 ...
0
votes
1answer
108 views

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 ...
0
votes
1answer
47 views

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 ...
0
votes
1answer
104 views

Zend_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' => ...
0
votes
3answers
611 views

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 ...