| Richard 
    richard at ccpgames.com Wed Apr 25 23:54:50 EST 2001 
 I have two mod_python directories defined in my apache config.
However, accessing the second shows me the first.
And of course, accessing the first shows me the first.
Am I doing something wrong?
Thanks,
Richard.
ScriptAlias /ir/ "/home/httpd/.../whelkboard/cgi/index.shtml"
<Directory /home/httpd/sorrows/whelkboard/cgi>
    DirectoryIndex index.shtml
    SetHandler python-program
    PythonHandler index
</Directory>
ScriptAlias /icelandic/
"/home/httpd/.../icelandic-language/cgi/index.shtml"
<Directory /home/httpd/.../icelandic-language/cgi>
    DirectoryIndex index.shtml
    SetHandler python-program
    PythonHandler index
</Directory>
 |