Graham Dumpleton

Results 765 comments of Graham Dumpleton

If you can't uninstall the two system packages for mod_wsgi, you must at least comment out these two lines: ``` ./conf.modules.d/10-wsgi-python3.conf: LoadModule wsgi_module modules/mod_wsgi_python3.so ./conf.modules.d/10-wsgi.conf:LoadModule wsgi_module modules/mod_wsgi.so ``` They conflict...

Obvious thing is whether the file `/local/apps/tcapp/apache/modules/mod_wsgi.so` actually exists. One can though also get that misleading error when any shared library linked to the mod_wsgi.so file cannot be found when...

Where did you get your Python installation from? Python 3 should not be `python`, but `python3`. Are you sure you are using normal `python3` from Homebrew?

It isn't tested with Python 2.7 anymore, but may still work as no changes have been made yet that breaks Python 2.7 compatibility. The error you are having is more...

From memory, for the last macOS versions that supplied Python 2.7, that old cut down version of Python 2.7 Apple supplied did not work for embedded systems. Is there a...

Have you looked at any of the documentation? For pip install method: * https://pypi.org/project/mod-wsgi/ For configure/make/make install method (Linux only): * https://modwsgi.readthedocs.io/en/master/user-guides/quick-installation-guide.html In other words, you need to build it...