[Django]-Apache/WSGI process dying

5👍

Read:

Make sure you are not loading mod_python at same time.

Ensure you are using mod_wsgi daemon mode and not embedded mode.

Force application to run in main interpreter application group.

The _strptime issue is a Python bug (only fixed in 3.3). Explicitly import _strptime module at the start of the WSGI script file.

Leave a comment