Thanks. This is a development server:
./manage.py runserver 0.0.0.0:8080 Debug is on: DEBUG = True TEMPLATE_DEBUG = DEBUG I'll read up on setting up a 500 error page to see if that helps. On Mar 16, 11:32 am, "[email protected]" <[email protected]> wrote: > We need more infos. > > Is it on the test server or on the prodution server? > > Is DEBUG on? > > If debug is off and 500 is beeing showed when maybe django is trying > to find "500.html" and if it's not available when this error happen > like you have. > > On Mar 16, 4:22 pm, Stodge <[email protected]> wrote: > > > I'm using the development server and seeing a POST request that > > results in a 500 error: > > > [16/Mar/2010 10:10:51] "POST /mysite HTTP/1.1" 500 56458 > > > I'm not getting any errors logged or tracebacks. The request isn't > > reaching my view even though my urls.py is correct and the app is > > enabled in settings.py. > > > Is there any way I can debug? Can I dump the request? I created a > > simple request logger middleware: > > > class RequestLogger(object): > > def process_request(self, request): > > syslog.syslog("**** RequestLogger - %s" % > > (request.get_full_path())) > > > But the request isn't being dumped, so something is going wrong before > > my middleware is running. > > > Thanks -- 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.

