On 9/10/07, shabda <[EMAIL PROTECTED]> wrote: > > I am trying to deploy django, and to test the install I am doing this, > I run django-admin.py startproject hello in directory /root/django > I have added to my httpd.conf > > <Location "/"> > SetHandler python-program > PythonHandler django.core.handlers.modpython > SetEnv DJANGO_SETTINGS_MODULE hello.settings > PythonDebug On > PythonPath "['/root/django', '/root/django/hello'] + sys.path" > </Location> > > [...] > > EnvironmentError: Could not import settings 'hello.settings' (Is it on > sys.path? Does it have syntax errors?): No module named hello.settings > > What am I doing wrong?
I wouldn't be surprised if the user Apache is running as can't access anything under the /root hierarchy. Try putting your project under another directory that can be made accessible to the Apache user and avoiding the temptation to break the overall system security in the process :) -- Ramiro Morales --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---