How can i trigger 500 Internal Server Error or 404 Page Not Found Apache errors in PHP?

For 500 Internal Server Error i have tried following code :

header("HTTP/1.0 500 Internal Server Error");

But it shows me a blank page. How can i show the error in Apache's default format?

Please guide..

link|improve this question

41% accept rate
At first glance I thought this would be trivial to solve. But it appears it's actually not. So +1 – GordonM Dec 31 '11 at 10:00
1  
Just to throw it out there for everyone: I was thinking you could just include Apache's original error document out of the shared files (/usr/share/httpd/error/HTTP_INTERNAL_SERVER_ERROR.html.var for me) and exit the PHP script. But I'm having a huge problem: how would you go about processing the .html.var file? In Apache it's set as AddHandler type-map var but I can't figure out anything that would be useful in PHP. – animuson Dec 31 '11 at 10:01
Really, you could just copy the error documents into your webroot and use header() with that as output. That's probably best unless you have a compelling reason not to. – Ben Lee Dec 31 '11 at 10:13
feedback

6 Answers

For 500, just put a bug in your code.

<?php throw new Exception('Nooooooooooooooo!'); ?>

The php script will raise an exception, resulting in a regular apache 500 error. [Update: Note that this will only result in an apache error if the php init setting display_errors is set to zero. In most development configurations, this is not the case. In most production configurations, this is the case.]

For 404, I think the best you can do is redirect to a non-existent page. Not exactly the same thing, but might do for your purposes:

<?php header("Location: /i-dont-think-therefore-i-am-not"); ?>

In most browsers, the users won't actually see the redirect, they will just get silently and quickly redirected to a non-existent page, resulting in a regular apache 404 error.

[Update: Note that setting the response code via header() (or some other way) will not result in the standard apache error document. It will return that response code with your own output (so you can have a custom error document). If you want the apache error documents, you have to get apache to return them (or forge them).]

link|improve this answer
1  
Fatal error: Uncaught exception 'Exception' with message 'Nooooooooooooooo!' – webarto Dec 31 '11 at 9:34
1  
Blech. There's really no need for this kind of hackery. – Cameron Skinner Dec 31 '11 at 9:37
1  
@GordonM works for me without any framework. – Sawny Dec 31 '11 at 9:41
1  
@BenLee: There's no need for it because there's a perfectly good pair of functions (header and http_response_code) that achieve the goal without making the code bizarre and unmaintainable. That said, I didn't downvote because this approach, while ugly, will still work. You seem to have slightly misunderstood my distaste for this: I wasn't criticizing the OP as there are plenty of valid reasons to send 500 and 404 response codes in the absence of a fatal error or missing document. The deliberate this-code-breaks approach is what I don't like. – Cameron Skinner Dec 31 '11 at 9:42
1  
@CameronSkinner, no, those header codes will just return response codes with empty documents. The OP wants the standard apache error documents. This is a hacky thing to want in the first place, and it requires a hacky solution. – Ben Lee Dec 31 '11 at 9:43
show 14 more comments
feedback

Apparently there is a function called http_response_code that will let you set the response code appropriately. If that doesn't work (there's a note in the documentation about it possibly being only in SVN) then the header function can take an optional response code argument:

header("HTTP/1.0 ...", true, 404);

This should signal Apache correctly.

link|improve this answer
2  
Why would this trigger Apache's error document? PHP still sends a Content-type: text/html document that contains no content. Does that just get magically ignored? Please explain more. – animuson Dec 31 '11 at 9:42
@animuson: Have you tested that or are you speculating? If I understand Apache correctly, this should trigger it's usual error document handling. It may depend on configuration, of course. – Cameron Skinner Dec 31 '11 at 9:46
above code is showing me blank white page. and for http_response_code() It is giving me an error : Call to undefined function http_response_code() – Forte Dec 31 '11 at 9:47
@Forte: OK, try the 3-arg version of header, then. The http_response_code must be a bleeding-edge function that hasn't made it into a full release yet. – Cameron Skinner Dec 31 '11 at 9:48
@Cameron: Using header("HTTP/1.0 404 Not Found", true, 404); displays a blank page. – animuson Dec 31 '11 at 9:51
show 8 more comments
feedback

Seems that it's not as easy to achieve at first glance.

This question might be of help.

link|improve this answer
feedback

After such a knowledge-full discussion, i think there is no php code can display the by default 500 Internal Server Error. The solution is :
1. Create a folder named http500 next to the php file.
2. Create a .htaccess file in it and add following code :

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^])(.(*/
    RewriteRule ^])((a-zA
</IfModule>
  1. PHP redirect code :

header('location : http500/');

link|improve this answer
feedback

you simply cannot trigger apache error pages from php code without hackery redirection as proposed by ben lee because error document redirection is handled by another layer of your application's stack (specifically, apache's mod_core).
when your script runs, it's too late.

the trickery of getting an error page by throwing an exception heavily depends on your php.ini's settings about error handling and verbosity.

http_response_code()currently only exists in php's svn thus it's not available in most production environments which are supposed to run an official release version.

my advice is to properly implement a custom error and exception handler via set_error_handler() and set_exception_handler(), respectively, use header() to send the client proper http status information and (if needed) generate error pages.

link|improve this answer
feedback

@Forte i see this far too often and even though header('Location: /a/path'); works with most (if not all) browsers, it is to be considered bad style as it does not adhere to the http rfc which specifically states:

The field value consists of a single absolute URI.

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.