Thanks to this forum, I learnt PHP header function does not actually send header to Apache server but only to the client.

What I wanna do is to generate an error 500, and let Apache displays its corresponding page. Is there a way to force it ?

Thanks in advance ! (and allez les bleus !)

link|improve this question

72% accept rate
Hmm, don't know whether this is possible. What do you want to do this for, and at which point do you want to generate the 500? – Pekka Jun 9 '10 at 9:08
1  
And who are those blue people you are referring to? Are they suffering from a lack of oxygen? ;) – Pekka Jun 9 '10 at 9:10
actually, we made some Apache custom error pages, and I'm cleaning up the PHP error handling, in order to have a unique error page (which would be the Apache one)... I'll try to write a bad .htaccess directive (or how to learn do something wrong on purpose...) and about the bleus, I guess you'll hear more about it on 11th of July ;) – Rolf Jun 9 '10 at 9:18
feedback

2 Answers

up vote 2 down vote accepted

Do a redirect to a URL that causes a 500.

For example a url with an invalid .htaccess directive.

link|improve this answer
thanks, I'll try that right now ! – Rolf Jun 9 '10 at 9:20
I tried to put in the .htaccess at the file RewriteRule ^error\.php$ /force_error_500.php [NC,R=500] (force_error_500.php does not exist) header('Location:error.php'); causes only a 404... I guess I missed a point :( – Rolf Jun 9 '10 at 9:54
Yes... create an INVALID .htaccess file. Yours was a valid one :) – zaf Jun 9 '10 at 9:56
sorry, sorry, sorry... now I have this: RewriteRule ^error\.php$ /stupid_directive.php [YMCA] on every URL I go, I got a 500... but I'd like to get it only with www.mysite.com/error.php... – Rolf Jun 9 '10 at 10:03
1  
OK, create a directory and put the invaild htaccess in there. In error.php just redirect to that directory. – zaf Jun 9 '10 at 10:30
show 1 more comment
feedback

There's a way of sending a 500 Error to the browser, but you'll have to provide the page yourself:

<?php
header('HTTP/1.1 500 Internal Server Error');
echo <<<ERRORTEXT
The server encountered an unexpected condition which prevented it 
from fulfilling the request.
ERRORTEXT;
// also notify server operator, maybe?
exit;
?>
link|improve this answer
thanks for your reply, but I need to use Apache error pages... – Rolf Jun 9 '10 at 9: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.