Emanuel Rumpf
x at branwelt.de
Tue Apr 4 08:27:13 EDT 2006
Hello, I wanted /anydir/py/test.py to be processed by mod_python on apache 1.3 server, when requesting http://domain.org/py/test.py (where /anydir/ is the DocumentRoot) No matter, what I tried, there was no success, either the file was delivered as textfile-download, or I got a "File not Found" error. my current config, which is inside a virtual host: <Directory /anydir/py/> Options -FollowSymLinks +Indexes Order allow,deny Allow from all PythonPath "sys.path+['/anydir/py/']" #PythonHandler handler_script PythonHandler mod_python.publisher PythonDebug On PythonInterpreter pi01 #excecute those with .py extension #AddHandler mod_python .py #excecute those with any extension #SetHandler mod_python # the same (?): SetHandler python-program </Directory> Any hints, how to make it working? Thanks, Emanuel btw: What's the diffence between: SetHandler mod_python and: SetHandler python-program
|