I checked out a recent copy of django from svn recently, and
"path_info" returned to rear its ugly head. The patch as per
http://code.djangoproject.com/ticket/3414 (mostly) resolves the
issue.

There doesn't seem to be a problem with FastCGI on my iBook nor on my
FreeBSD production machine; however, for some reason that I'm not
bright enough to understand, there is a problem with the simple
included server in conjunction with a server such as nginx, and
possibly others. This is a problem with both the bleeding edge svn
checkout as well as the most recent stable verstion of django over
plain old HTTP:

Exception happened during processing of request from ('127.0.0.1',
56249)
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/SocketServer.py", line 222, in handle_request
    self.process_request(request, client_address)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/SocketServer.py", line 241, in process_request
    self.finish_request(request, client_address)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/SocketServer.py", line 254, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/servers/basehttp.py", line 543, in
__init__
    BaseHTTPRequestHandler.__init__(self, *args, **kwargs)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/SocketServer.py", line 521, in __init__
    self.handle()
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/servers/basehttp.py", line 584, in
handle
    if not self.parse_request(): # An error code has been sent, just
exit
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/BaseHTTPServer.py", line 276, in parse_request
    self.send_error(400, "Bad request syntax (%r)" % requestline)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/BaseHTTPServer.py", line 340, in send_error
    self.log_error("code %d, message %s", code, message)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/BaseHTTPServer.py", line 411, in log_error
    self.log_message(*args)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/site-packages/django/core/servers/basehttp.py", line 592, in
log_message
    if self.path.startswith(self.admin_media_prefix) or self.path == '/
favicon.ico':
AttributeError: WSGIRequestHandler instance has no attribute 'path'


--~--~---------~--~----~------------~-------~--~----~
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