thanks for the feedback cpanelkenneth.
I added this to the /usr/local/apache/conf/userdata/[ssl or std]/[1 or 2]/<something>.conf
Code:
<IfModule mod_python.c>
<Directory /home/~user~/public_html>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /home/~user~/public_html
PythonOption TracUriRoot /
</Directory>
</IfModule>
and ran the
Code:
/scripts/verify_vhost_includes --show-test-output
which told me everything was fine with that file. This is a major improvement. Then I ran
Code:
/scripts/ensure_vhost_includes --user=~user~
and restarted apache. The expected output of having mod_python kick in and parse the Trac application did not work. When I add the
Code:
<IfModule mod_python.c>
<Directory /home/~user~/public_html>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /home/~user~/public_html
PythonOption TracUriRoot /
</Directory>
</IfModule>
directly to httpd.conf in the appropriate Virtual Host directive then everything works as expected. Do you see anything I missed or know of a way to further debug this issue ? I feel a bit stuck by not knowing the service manager as well as I should.
Best,
Bill