I have apache directives set up for custom error docs for 404, 403, etc, as well as 500. However, PHP, upon encountering a fatal error, displays a blank page instead of triggering the apache 500 response.

I don't need to display the error details or anything like that, as they are currently logged correctly in apache error_logs, so I don't think it has anything to do with error_reporting or display_errors, both of which are set correctly.

There are some similar questions here on SO, but haven't found an answer that does what I need. Basically, in the case of something like a syntax error, I want to see the apache 500 error page, NOT a blank page. This is not something that can be caught and handled in PHP, since syntax errors are uncatchable.

This appears to have been patched/fixed in php 5.2.4, as seen here: http://www.mail-archive.com/internals@lists.php.net/msg28557.html

However, we are using PHP 5.2.17, and an upgrade is not feasible at this time. Does anyone have any solutions / workarounds that might work to trigger 500 errors in apache for any PHP syntax/fatal error?

link|improve this question

50% accept rate
PHP 5.2.17 was released after PHP 5.2.4. Have you checked your php.ini? – Justin ᚅᚔᚈᚄᚒᚔ Jul 14 '11 at 6:40
Hmm no, tbh I have not. Do you happen to know what option in php.ini controls this? – Kevin J Jul 14 '11 at 6:52
feedback

1 Answer

Not sure if this works: register a shutdown handler and display the appropriate page. The shutdown handler should get called whenever a fatal error occurs. Make sure that you register the handler on top of your script.

link|improve this answer
That will work for many situations, and is the solution I was most often able to find, however it will not work for syntax errors (and other uncatchable errors) since the code does not get executed at all. I'm looking for a way to make php behave similarly to perl, java, etc, and serve a proper apache 500 error, rather than a php triggered one. – Kevin J Jul 14 '11 at 6:55
feedback

Your Answer

 
or
required, but never shown

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