Graham Dumpleton

Results 765 comments of Graham Dumpleton

You are better to use Apache httpd which comes with Homebrew on recent macOS versions. Apple has decided to disallow third party Apache modules with the system Apache unless they...

FWIW, don't know if still may work, but you can try procedure outlined in: * https://www.simplified.guide/macos/apache-php-homebrew-codesign * https://www.simplified.guide/macos/keychain-cert-code-signing-create Let me know if try and it works. When I get a...

Anything based on numpy will not work in Python sub interpreters. You need to force the use of the Python main interpreter. See: * https://modwsgi.readthedocs.io/en/master/user-guides/application-issues.html#python-simplified-gil-state-api about setting ``WSGIApplicationGroup`` directive.

Ahh yes, sorry, was in a rush to give a response just as was going to sleep. The `application-group` should do the same. I didn't read properly and assumed were...

This could be a hard one to work out. To try and isolate it from everything else, can you test with a WSGI hello world program of: ``` import pyproj...

Oh, seems nothing was ever added to docs for it. It does not work outside of daemon mode as there is no easy way with Apache internal request handling to...

Working link for that old Google Code site issue is: * https://code.google.com/archive/p/modwsgi/issues/57

As far as I know it isn't possible to implement it for embedded mode. Why are you using embedded mode anyway? You should always use daemon mode unless you have...

If you are using daemon mode, then I am confused why you would want that feature implemented for embedded mode.