vote up 1 vote down star

I've created an RSS feed using Zend_Feed.

It seems to have worked in that the resulting XML looks good. My problem is that Firefox won't recognise it as an RSS feed and instead prompts me to download the raw XML.

Trying it in IE gives the error "this feed contains code errors" with the following extra info:

Invalid xml declaration. Line: 2 Character: 3

< ? xml version="1.0" encoding="UTF-8" ?>

Any help greatly appreciated.

flag

Note that I put the space between the < and the ? in the IE error as otherwise this line wasn't being shown in my post. – William Jun 15 at 11:52

4 Answers

vote up 1 vote down check

The xml-declaration must be on the absolute first line in the output. I.e. no blank lines or spaces before the xml-declaration tag.

This is valid:

<?xml version="1.0" encoding="UTF-8" ?>

This is not:

 <?xml version="1.0" encoding="UTF-8" ?>
link|flag
Thanks - it looks like this is the problem as there is a blank line first. Not sure why Zend is doing that though... – William Jun 15 at 11:58
It might not be Zend - make sure you don't have any errant whitespace in your PHP. – MegaHAL Jun 15 at 12:04
You are correct - it seems that a blank line after the closing ?> at the end of the PHP file was causing the problem. Many thanks. – William Jun 15 at 12:12
1  
You can safely omit the ?> at the end of PHP files to avoid this altogether – David Caunt Jun 15 at 13:23
vote up 0 vote down

Check whether <?xml version="1.0" encoding="utf-8"?> is the first line in the feed file. No empty lines or spaces!

link|flag
vote up 0 vote down

If PHP is spitting out any notices/warnings or such, those will malform the feed. Try setting error_reporting to zero before the feed is sent to test:

error_reporting(0);
link|flag
Alternatively, set error reporting to maximum, and fix the problem, rather than just hiding it. error_reporting(E_ALL|E_STRICT); – Alister Bulman Jun 15 at 15:45
vote up 0 vote down

good rule of thumb when using php class files and such, never ?> your class files. Only use ?> in template-type files where you are going to have regular output afterwards. All of the major packages do this now for exactly the above reasoning.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.