Customize wrote:
>
> I have found a tutorial on this http://www.alexatnet.com/node/11 and
> moved my logic in the controller accordingly instead of view. Now I am
> getting absolutely nothing. Looking at view source gives me
> ================
> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
> Transitional//EN"><html><head><title></title></head><body></body></html>
> ================
>
> However, after "Zend_Feed::importArray($channel, 'rss');" I tried the
> vardump of $channel and it shows correctly. What is wrong? Is send()
> function not working?
>
> Thanks
>
>
You have to disable layout and view rendering:
$this->_helper->layout->disableLayout();
$this->getHelper('viewRenderer')->setNoRender(true);
--
regards
takeshin
--
View this message in context:
http://www.nabble.com/Internal-Server-Error-using-Zend_Feed-tp22594266p24019779.html
Sent from the Zend Framework mailing list archive at Nabble.com.