On Thu, 2008-04-24 at 19:44 -0700, zoggernaut wrote: [...] > <Location "/frobnitz/"> > SetHandler python-program > PythonHandler django.core.handlers.modpython > SetEnv DJANGO_SETTINGS_MODULE frobnitz.settings > #SetEnv DJANGO_SETTINGS_MODULE settings.py > PythonDebug On > PythonPath "['/usr/home/frobnitz'] + sys.path" > </Location>
You are trying to import forbnitz.settings. Which means that the *parent* directory of frobnitz must be on the Python path. That is not the case here (the parent directory would be /usr/home/). This is documented in the Django mod_python documentation. Please read it carefully. Regards, Malcolm -- Borrow from a pessimist - they don't expect it back. http://www.pointy-stick.com/blog/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

