Gregory (Grisha) Trubetskoy
grisha at modpython.org
Thu Jun 28 23:59:57 EST 2001
This means the Module didn't load. You can it the module is loaded or not with a simple test by telneting to your web server and sending "HEAD / HTML/1.0" and look for the server to have the mod_python and Python version in the header. If you don't see it, the module didn't load. Should look something like this: $ telnet localhost 80 Trying 127.0.0.1.... Connected to localhost. Escape character is '^]'. HEAD / HTTP/1.0 HTTP/1.1 302 Found Date: Fri, 29 Jun 2001 03:55:37 GMT Server: Apache/1.3.14 (Unix) mod_ssl/2.7.1 OpenSSL/0.9.6 mod_python/2.7.2 Python/2.0 Grisha On Thu, 28 Jun 2001, Michael C. Urban wrote: > Hi, > > I just installed mod_python as a DSO, in Apache 1.3.20 under FreeBSD. > The install went fine, and the module seems to load. But when I try to > do the 2.4 Testing section in the manual and add the following lines > to httpd.conf as shown in the manual: > > > <Directory /some/directory/htdocs/test> > AddHandler python-program .py > PythonHandler mptest > PythonDebug On > </Directory> > > I get the following error when trying to start Apache: > > Syntax error on line 371 of /usr/local/etc/apache/httpd.conf: > Invalid command 'PythonHandler', perhaps mis-spelled or defined by a > module not included in the server configuration > > Anyone have any ideas? > > Thanks, > > Mike > _______________________________________________ > Mod_python mailing list > Mod_python at modpython.org > http://www.modpython.org/mailman/listinfo/mod_python >
|