vote up 2 vote down star

does symfony redirect to custom error page if Fatal PHP error occurs?

flag

2 Answers

vote up 3 vote down

Yes, you can put the files to here

/www/site/web/errors/error500.php
/www/site/web/errors/unavailable.php

Read more 19-Mastering-Symfony-s-Configuration-Files

link|flag
vote up 0 vote down

No, you need to set that at the Apache level.

And make sure it's a flat HTML page - if PHP is causing the error and you try to deliver a PHP-driven 500 page, you might get the error again and Apache will figure out that your error page is recurring and display its own anyway.

Example from an .htaccess file

ErrorDocument 500 /errors/500.htm
link|flag
A downvote? really? – Peter Bailey Jul 8 at 17:12

Your Answer

Get an OpenID
or

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