I have a page written in PHP. I do not have access to the server. I'd like to make so that instead of showing an error message when PHP encounters an error, it gives a 500.

link|improve this question

What is 500 ? – Darin Dimitrov Sep 4 '11 at 19:21
1  
@Darin Dimitrov: I think OP is referring to the HTTP Status code 500. – RepWhoringPeeHaa Sep 4 '11 at 19:22
@PeeHaa, aha, ok. – Darin Dimitrov Sep 4 '11 at 19:22
feedback

2 Answers

up vote 2 down vote accepted

PHP 5.2 by default sends HTTP 500 in case of fatal error, if display_errors is off. If the hosting is with older PHP, you have to register your own error handler and possibly exception handler and redirect the user to your 500 error page. Try setting the display_errors and error_reporting variables in your PHP script as @Umang suggested.

link|improve this answer
feedback

you can create your own error handler and use it to send 503 status code to the client.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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