I can see that django looks for 500.html when DEBUG is False. What could be the problem?
I can see that django looks for 500.html when DEBUG is False . What
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When debug is set to False django renders the 500.html template instead of the debug stack-trace thing.
It might be that on a http 404 (not found) exception it tries to render the 404.html template and if it’s not found than tries with the 500.html (internal error).
It is not a problem in itself but just a configuration.