PantaneiroCG
PantaneiroCG
Graham, Thank you for your help and attention. I did as per your guidance, however, now it presents this error when starting Apache: AH00526: Syntax error on line 557 of...
Okay, I commented out the line as below, then it returns to the previous error. Apache manages to start, but when trying to access the application through the browser, it...
I believe it's something I'm doing wrong in the httpd.conf configuration.
It was the first lines of the log and errors: [Mon Jul 03 20:17:05.036983 2023] [mpm_winnt:notice] [pid 11860:tid 512] AH00455: Apache/2.4.57 (Win64) mod_wsgi/4.9.5.dev1 Python/3.11 configured -- resuming normal operations [Mon...
With these httpd.conf settings, is this request not being made to the wsgi application? How to make this request correctly?
Ahh yes, now I understand, I'm sorry that English is not my official language in my country. I'm going to configure Apache to show this message, I tried to access...
Graham, thank you for your patience, I changed the apache configuration to info and new lines appeared in the log: [Tue Jul 04 08:41:24.304642 2023] [wsgi:info] [pid 5348:tid 1248] [client...
Graham, performing the tests I added the root folder in the line: "WSGIScriptAlias **/projeto_cad_usuarios** "C:/Apache24/htdocs/Cadastro/projeto_cad_usuarios/projeto_cad_usuarios/wsgi.py" after the slash. As a result the lines below and in the browser only my...
**My file wsgi.py** import os import sys print("PATH:", sys.path) from django.core.wsgi import get_wsgi_application os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'projeto_cad_usuarios.settings') application = get_wsgi_application() **I did before and now again. Below I am also sending new...
**Hi Graham. I noticed that when I run the python development server, the result of the wsgi.py print command appears.** ``` (env) C:\Apache24\htdocs\Cadastro\projeto_cad_usuarios>python manage.py runserver Performing system checks... System check...