On 12/3/07, Bram - Smartelectronix <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
>
> I'm trying to get a big project up and running again on my local
> machine. I updated to the latest trunk.
>
> I'm getting this error before reaching my view function and after
> waiting about 30 seconds while both mozilla and django just sit and do
> nothing, not even waste CPU:
>
> http://dpaste.com/26604/


Traceback seems to indicate something during the request processing is
generating a 500 exception, but attempting to render the template for the
error response is failing on lookup for "request" in the empty context used
for generating the error response page.  Do you have a 500.html template
that tries to do something with request?  But even when you get past that
error, the real problem is what is causing the server error.  Have you tried
running with debug on?

I tried removing a lot of code like the context processor, various
> pieces of middleware and change my view function to:
>
> def browse(request):
>      print "in view"
>      return HttpResponse("hello")
>
> but to no avail.
>
> Another hint is that another view function works just fine!


So what's different between the view that works and the one that
doesn't...?  That would be a better clue.

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to