Hi Krietjur,
Probably, you need to try something like:

<VirtualHost *:80>
        <Location "/mysite/">
            SetHandler python-program
            PythonHandler django.core.handlers.modpython
            PythonPath sys.path+['/home/kris/my_django_project_dir']
            SetEnv DJANGO_SETTINGS_MODULE myproject.settings
            PythonDebug On
        </Location>
</VirtualHost>

Here, my_django_project_dir =  where (in which dir) your django
project's __init__.py and settings.py files are located. I guess that
very directory should by appended to PythonPath
(+['/home/kris/my_django_project_dir'], do you have them directly in
/home/kris?

Greetings,
Giorgi

Reply via email to