Graham Dumpleton

Results 765 comments of Graham Dumpleton

The error: ``` C:\Users\testuser\AppData\Local\Temp\pip-install-4t5w6pjg\mod-wsgi_3fc90f010c19446c958fdae46f671ac2\src\server\wsgi_python.h(44): fatal error C1083: Cannot open include file: 'node.h': No such file or directory ``` would only come up if you are using mod_wsgi version < 4.9.0....

I would need to see your configuration but at a guess I would say that you have declared a daemon process group but not used WSGIProcessGroup directive or process-group option...

Sorry for slow reply, was on holiday. Did you make progress on this?

First verify what version mod_wsgi is actually compiled for and using. * https://modwsgi.readthedocs.io/en/master/user-guides/checking-your-installation.html#python-installation-in-use What do you get for the values referenced in the docs? Can you also post the actual...

@platipusica You need to show how you configured mod_wsgi. Based on the log messages you are trying to use mod_wsgi daemon mode, yet you don't show that configuration so can't...

Use Apache from ApacheLounge. The XAMPP distribution doesn't usually work. Never been able to work out whether their Apache libraries are broken, but trying to create third party Apache modules...

Right now I can only assume that Debian/Ubuntu has broken their Python distribution such that it can no longer be used with embedded systems if you want to use a...

When running gunicorn it isn't an embedded system, it is just a command line Python invocation, very different. What you can try is to change to using: ``` python-path=/var/www/html/jam/venv/lib/python3.10/site-packages ```...

Double check directory/file ownership/permissions on the virtual environment and ensure accessible to `www-data` user.

Also try some of the tests outlined in: * https://modwsgi.readthedocs.io/en/master/user-guides/checking-your-installation.html#python-installation-in-use to see if it yields anything interesting which may help.