show/hide this revision's text 3 Another attempt to format it

I used to have the same problem and the following entry in the httpconf http.conf worked fine with me:

In case Python is not in the Document-root

<Directory "Path-to-python/Lib/site-packages/django/contrib/admin/media/"> 
    AllowOverride None 
    Options None 
    Order allow,deny 
    Allow from all 
</Directory> 

Alias /media/ "Path-to-Python/Lib/site-packages/django/contrib/admin/media/"

<Location "/mysite/">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE mysite.settings
    PythonOption django.root /mysite
    PythonInterpreter mysite
    PythonDebug On
    PythonPath "['C:/Python/Django/apps'] + sys.path"
`</Location>
show/hide this revision's text 2 failed in reformatting

I used to have the same problem and the following entry in the httpconf worked fine with me:

In case Python is not in the Document-root`

AllowOverride None Options None Order allow,deny Allow from all

Alias /media/ "Path-to-Python/Lib/site-packages/django/contrib/admin/media/"

SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonOption django.root /mysite PythonInterpreter mysite PythonDebug On PythonPath "['C:/Python/Django/apps'] + sys.path" `

show/hide this revision's text 1

I used to have the same problem and the following entry in the httpconf worked fine with me:

In case Python is not in the Document-root ` AllowOverride None Options None Order allow,deny Allow from all

Alias /media/ "Path-to-Python/Lib/site-packages/django/contrib/admin/media/"

SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonOption django.root /mysite PythonInterpreter mysite PythonDebug On PythonPath "['C:/Python/Django/apps'] + sys.path" `