Re: [PHP] Can't even make a simple test RSS feed

2005-06-30 Thread Richard Lynch
On Fri, June 24, 2005 12:23 pm, Brian Dunning said: What am I doing wrong? This doesn't work. The browser does not even load the page, no error or anything: ?php echo '?xml version=1.0?rss version=2.0channel'; echo 'item'; echo 'titlehdfghdf/title'; echo 'descriptiondfghdfh/description';

[PHP] Can't even make a simple test RSS feed

2005-06-24 Thread Brian Dunning
What am I doing wrong? This doesn't work. The browser does not even load the page, no error or anything: ?php echo '?xml version=1.0?rss version=2.0channel'; echo 'item'; echo 'titlehdfghdf/title'; echo 'descriptiondfghdfh/description'; echo 'linkhttp://somelink/link'; echo '/item'; echo

Re: [PHP] Can't even make a simple test RSS feed

2005-06-24 Thread Joe Muddah
go view-source in your browser. Some browsers will not show the xml all though it is in the source On 6/24/05, Brian Dunning [EMAIL PROTECTED] wrote: What am I doing wrong? This doesn't work. The browser does not even load the page, no error or anything: ?php echo '?xml version=1.0?rss

Re: [PHP] Can't even make a simple test RSS feed

2005-06-24 Thread Brian Dunning
I'm ahead of you there - that's not the problem. IE6 just acts like I didn't request a page. Safari returns a “unknown error” (NSURLErrorDomain:-1). -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can't even make a simple test RSS feed

2005-06-24 Thread Kevin L'Huillier
On 6/24/05, Brian Dunning [EMAIL PROTECTED] wrote: What am I doing wrong? This doesn't work. The browser does not even load the page, no error or anything: The script looks fine and executed as expected on my machine. Try executing it from the command-line. Often if nothing loads in the

Re: [PHP] Can't even make a simple test RSS feed

2005-06-24 Thread Nicolas Diez
Well, I don't know if I have the solution, but when the page has the ..php file extension it doesn't work. But when it has the .rss file extension, it works. It's the workaround I found. Safari doesn't return an error now. I've tested the script under MacOSX 10.4.1 with Apache 2.0.54 and PHP