Re: [fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-12 Thread Simone Carletti
What do you mean with this in 'why is Zend_Feed not doing this'? Waigani wrote: > > Yeah, checked both those things, no luck. I've a typo in my last message - > I meant to say 'why is Zend_Feed not doing this'? Here is my full function > (there must be something missing???): > > > function s

Re: [fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-11 Thread Waigani
Yeah, checked both those things, no luck. I've a typo in my last message - I meant to say 'why is Zend_Feed not doing this'? Here is my full function (there must be something missing???): function sendAction() { // prepare an array that our feed is based on

Re: [fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-11 Thread Simone Carletti
Be sure you do not add any ?> at the end of php-only files and you do not print any output before the XML. Waigani wrote: > > The browser prompts me to download a file which has the same name as the > action but no xml extension. When I add the xml extension and delete the > white space before

Re: [fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-11 Thread Waigani
The browser prompts me to download a file which has the same name as the action but no xml extension. When I add the xml extension and delete the white space before > Be sure you set the correct MIME Response Type to application/xml. > > > Waigani wrote: >> >> Yay it works! Thank you. But now

Re: [fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-11 Thread Simone Carletti
Be sure you set the correct MIME Response Type to application/xml. Waigani wrote: > > Yay it works! Thank you. But now the browser does not recognise the xml. > I'm probably missing something obvious as I'm new to feeds: > > > http://purl.org/rss/1.0/modules/content/"; > version="2.0">

Re: [fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-10 Thread Waigani
Yay it works! Thank you. But now the browser does not recognise the xml. I'm probably missing something obvious as I'm new to feeds: http://purl.org/rss/1.0/modules/content/"; version="2.0"> test.com Mon, 10 Dec 2007 21:28:44 + [EMAIL PROTECTED] (Jesse Meek)

Re: [fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-10 Thread Simone Carletti
Hi Waigani, entries must be an array of entries and each entry is an array itself. This is the right version of your code, you are missing one array statement. //Feed Array $feedArray = array( 'title' => 'Test Feed', 'link' => 'test.com', //'lastU

[fw-general] : exception 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing'

2007-12-06 Thread Waigani
Hi, I'm trying to import an array as a feed and get the following error: 'Zend_Feed_Builder_Exception' with message 'title key of source property is missing' in …/Zend/Feed/Builder.php:368 Here is the code: //Feed Array $feedArray = array( 'title' => 'T