> The problem I'm having right now is that I'm getting a 500 error > instead of 404s when Debug=False. I get 404s as expected when > Debug=True. I can't for the life of me figure out what is breaking, > since I don't have any error data to go off.
Django sends you exception logs by mail if you set DEBUG=False. Just define mail settings (1_) and supply a valid email adress with the ADMINS variable in settings.py. Concerning your original issue, did you define a 404.html template? Regards, Daniel _1 http://docs.djangoproject.com/en/dev/topics/email/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

