Forum Moderators: phranque
AddType application/x-httpd-php .html
ErrorDocument 403 /yourlogin/error403.html
ErrorDocument 403 /error403.html
ErrorDocument 404 /yourlogin/error404.html
ErrorDocument 404 /error404.html
ErrorDocument 500 /yourlogin/error500.html
ErrorDocument 500 /error500.html
Everything works fine till an error document is requested by the server. It is not shown. But if I delete the first line ("AddType application/x-httpd-php .html") everything works fine (except the parsing).
Is there anybody who can find the problem?
WHy do you have multiple ErrorDocuments declared for each error type? You can declare different ErrorDocuments within different .htaccess files, but only one per type per .htaccess file will be used, and I'm not sure whether Apache will use the first or second one - I suspect the second...
If you have the option, increase you error logging level to see if you can dig any more help out of the error log.
Jim
I tried to set the error level to debug. Unfortunately, I do not understand enough of the messages that appear. The only critical seems to be the one I posted before.
I give up!