5👍
✅
Read:
- http://modwsgi.readthedocs.io/en/develop/user-guides/frequently-asked-questions.html#apache-process-crashes
- http://modwsgi.readthedocs.io/en/develop/user-guides/installation-issues.html
- http://modwsgi.readthedocs.io/en/develop/user-guides/application-issues.html
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.
Source:stackexchange.com