Your solution was what the documentation tells you to do.

I still contend that the documentation could better explain this, but
when I pushed that in the past others felt it was clear enough
already. Despite that, people still have problems, that or people
don't actually read the documentation. :-)

Graham

On Sep 29, 10:39 am, felix <[EMAIL PROTECTED]> wrote:
> Hello,
> I wrote up this big problem to ask you kind folx for help, and in the
> course of that I figured it out.
> But I'm still going to post it just to share the experience.
>
> I have an apache config problem, maybe someone can help.
>
> I am setting up the production version on my site :
>
> apache conf
>
> <Location "/sustain/">
>     PythonPath "['/home/crucial/gitpo/djapps','/home/crucial/gitpo/
> pluggables','/home/crucial/gitpo/sustain'] + sys.path"
>
>     Order allow,deny
>     Allow from all
>     SetHandler python-program
>     PythonHandler django.core.handlers.modpython
>     SetEnv DJANGO_SETTINGS_MODULE sustain.settings_sus_live
>     PythonOption django.root /sustain/
>     PythonDebug On
>
>     PythonAutoReload On
>
> </Location>
>
> the files:
>
> /home/crucial/gitpo/sustain
>         settings_sus_live.py
>         urls.py
>         etc. ...
>
> This gives :
> ImportError: Could not import settings 'sustain.settings_sus_live' (Is
> it on sys.path? Does it have syntax errors?): No module named
> sustain.settings_sus_live
>
> The python path appears to be correct, right ? (hint ... no )
>
> But if I change:
>     SetEnv DJANGO_SETTINGS_MODULE sustain.settings_sus_live
> to
>     SetEnv DJANGO_SETTINGS_MODULE settings_sus_live
>
> django will run !
>
> but then it fails (with that soothing django exception display):
>
> No module named sustain.urls
>
> it does show that the python path is correct:
>
> Python Path: ['/home/crucial/gitpo/djapps', '/home/crucial/gitpo/
> pluggables', '/home/crucial/gitpo/sustain', etc
>
> The solution is that '/home/crucial/gitpo/sustain' is not the
> immediate PARENT of the sustain module, it IS the sustain module
>
> '/home/crucial/gitpo/' is the correct path to add.  that's the
> immediate parent folder of the module.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to