Re: [PHP] getting php to generate a 503

2005-10-12 Thread Chris Shiflett
[EMAIL PROTECTED] wrote: I want to write a php page that can return a 503 with some useful information. ?> Is what I've done so far - yet it doesn't work You need to elaborate or define what "works" means to you, because my first assumption is that it works just fine. What behavior ar

Re: [PHP] getting php to generate a 503

2005-10-10 Thread Jasper Bryant-Greene
[EMAIL PROTECTED] wrote: I want to write a php page that can return a 503 with some useful information. ?> Is what I've done so far - yet it doesn't work, the headers don't seem to be modified and my page just returns the echoed contet and both firefox and IE blithely ignore the fact tha

Re: [PHP] getting php to generate a 503

2005-10-10 Thread Jochem Maas
[EMAIL PROTECTED] wrote: I want to write a php page that can return a 503 with some useful information. try header("Status: 503 Service Unavailable"); echo "Page execution failed.\n"; ?> Is what I've done so far - yet it doesn't work, the headers don't seem to be modified and my pag