4👍
Were you trying this with https?
I had the same problem and finally figured out it should be with http (no s) while in development. https encrypts your request, which is a bunch of gibberish as far as the development server is concerned.
- How to unit test Django-CMS extensions?
- Default value for Django choices field
- Memcached on Heroku w/ Django : can't install pylibmc / memcacheify
- How do I get union keys of `a` and `b` dictionary and 'a' values?
3👍
From the stack trace it looks Django development server tries to log a request and fails because request is invalid.
Turns out that BaseHTTPServer simply logs the first line of raw HTTP request, so if your browser sends trash in request (who knows why) then development server might fail trying to log it. I would suggest using a development console or Firebug to check the request headers sent by browser. If this is the case, then whole situation is more of a test environment issue.
- Print type of variable in python3.5 on django 1.8
- How to get filtered queryset in django admin?
- How do clone a Mercurial repository into a directory that already exists?
Source:stackexchange.com