1👍
✅
Make sure you read:
Do not use os.environ.setdefault() in the WSGI script file as is now generated by Django. Change it os.environ[…] instead.
0👍
Graham’s answer was helpful. To anyone else having the same problem, I’d also like to point out the section on WSGIApplicationGroup that says each wsgi application should be run on it’s own python sub-interpreter.
more info here: http://modwsgi.readthedocs.org/en/latest/configuration-directives/WSGIApplicationGroup.html
- [Answer]-Django – Changing/Initializing a Form Field after Validation
- [Answer]-Django admin unable to find subclass of models.CharField
Source:stackexchange.com