[Answer]-Server seemingly randomly spitting out error messages: Exception occurred processing WSGI script

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

Leave a comment