> ImportError: Could not import settings 'frobnitz.settings' (Is it on > sys.path? Does it have syntax errors?): No module named > frobnitz.settings
So as the error clearly asks you: 1. Does your frobnitz/settings.py have syntax errors? 2. Is it in your PYTHONPATH? Your Apache conf for the application should have a line like: PythonPath "['/path/to/project'] + sys.path" That goes in the <Location> directive and should point to the directory that's the parent of your frobnitz directory. See this for details: http://www.djangoproject.com/documentation/modpython/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

