vote up -1 vote down star

PHP fatals come back as 200, how can i make it return a 500

flag
do you mean fatal error ? – Xinus Oct 12 at 17:36
the fact php return an error that is not related to the HTML header you get in the browser. If you run that script from the command line you wont get any 200 error code – Gabriel Sosa Oct 12 at 18:27

3 Answers

vote up 3 vote down

You can use php error handling

http://www.w3schools.com/php/php%5Ferror.asp

link|flag
vote up 2 vote down
header("HTTP/1.1 500 Internal Server Error");
link|flag
vote up 2 vote down

You would have to catch the thrown error using try/catch and then use that catch block to send a header() with the 500 error.

try {
    ...badcode...
    throw new Exception('error');

} catch (Exception $e) {

    header("Status: 500 Server Error");
    var_dump($e->getMessage());
}
link|flag
That will catch exceptions, but it won't catch PHP Fatal errors, which are handled outside the scope of exceptions. – Alan Storm Oct 12 at 17:33
Fatal/syntax errors can't be captured as far as i know, neither by errorhandling nor by exceptionhandling – ChrisRamakers Oct 12 at 19:13

Your Answer

Get an OpenID
or

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