On 8/23/05, Krzysztof Drozd <[EMAIL PROTECTED]> wrote:
> if i get my.net/admin/ i t produce 404 :(
> <Location "/">
>     PythonPath "['/var/www/ap'] + sys.path"
>         SetHandler python-program
>         SetEnv DJANGO_SETTINGS_MODULE tutgw.settings.main
>         PythonHandler django.core.handlers.modpython
>         PythonDebug On
> </Location>
> <Location "/admin/">
>     PythonPath "['/var/www/ap'] + sys.path"
>         SetHandler python-program
>         SetEnv DJANGO_SETTINGS_MODULE tutgw.settings.admin
>         PythonHandler django.core.handlers.modpython
>         PythonDebug On
> </Location>

Check out "Multiple Django installations on the same Apache" in the
Django mod_python documentation. You need "PythonInterpreter".

http://www.djangoproject.com/documentation/modpython/

Adrian

Reply via email to