Questions tagged [zend-feed]

Zend-feed is the feed component from Zend Framework. It provides functionality for consuming and modifying RSS and Atom feeds and turning the result back into XML. Use this tag for questions related to the feed component.

Zend-feed is the feed component from Zend Framework. It provides functionality for consuming and modifying RSS and Atom feeds and turning the result back into XML.

Documentation: https://docs.zendframework.com/zend-feed

Homepage: https://github.com/zendframework/zend-feed

25 questions
1
vote
2 answers

DOMDocument 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 Entity, line: 827 I tried with another site…
raygo
  • 1,348
  • 5
  • 18
  • 40
1
vote
1 answer

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 = array( 'title' => 'Student\'s Movie Club -…
Andreas
  • 5,305
  • 4
  • 41
  • 60
0
votes
1 answer

How 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) { continue; } foreach…
Marwelln
  • 28,492
  • 21
  • 93
  • 117
0
votes
1 answer

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 identical code continues to work perfectly on my…
Paul Watson
  • 361
  • 1
  • 3
  • 8
0
votes
2 answers

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 feed. Instead of duplicating code and adding the…
Richard Parnaby-King
  • 14,703
  • 11
  • 69
  • 129
0
votes
1 answer

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…
user285594
0
votes
1 answer

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' => $feed->getTitle(), 'link' =>…
Hans
  • 237
  • 5
  • 13
0
votes
3 answers

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…
John
0
votes
2 answers

how 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: rss/index.phtml. XML file generation works fine for me. In…
woyaru
  • 5,544
  • 13
  • 54
  • 92
0
votes
1 answer

Zend 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 is $feed = new…
raygo
  • 1,348
  • 5
  • 18
  • 40
1
2