Zend_Feed_Reader Not supported Schema

Posted by LookUp Webmaster on Stack Overflow See other posts from Stack Overflow or by LookUp Webmaster
Published on 2010-04-18T22:47:19Z Indexed on 2010/04/18 22:53 UTC
Read the original article Hit count: 527

Filed under:
|
|
|
|

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'  => $feed->getDescription(),
        'language'     => $feed->getLanguage(),
        'entries'      => array(),
    );

    foreach ($feed as $entry) {
        $edata = array(
            'title'        => $entry->getTitle(),
            'description'  => $entry->getDescription(),
            'dateModified' => $entry->getDateModified(),
            'authors'       => $entry->getAuthors(),
            'link'         => $entry->getLink(),
            'content'      => $entry->getContent()
        );
        $data['entries'][] = $edata;
    }

And it throws the following exception: Scheme "feed" is not supported

The blog was made using Wordpress.

What's wrong? If "feed it's not supported", how can I change the type of feed that Wordpress does?

Thanks in advance,

Take care,

© Stack Overflow or respective owner

Related posts about rss

Related posts about feed