[EMAIL PROTECTED] wrote:
> At first I didn't keep all of the original stuff in the httpd.conf,
> but then I went back and put up the copy that I backed up and added
> the Django stuff to it.
> 
> i have the django stuff in /home/chris/web/
> 
> should it be in /var/www ?
> 
Nope, that should not make any difference.

The only real difference I see between your setup and the one I'm using
live on holdenweb.com is that I use a PythonPath entry that refers to my
project and then use "settings" as the name of the setting module. I
don't know whether that will make a difference, but you could try

<Location "/">
    SetHandler python-program
    PythonPath "['/home/chris/web/django_project/ucwv'] + sys.path"
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE settings
    PythonDebug On
</Location>

regards
 Steve
-- 
Steve Holden        +1 571 484 6266   +1 800 494 3119
Holden Web LLC              http://www.holdenweb.com/

--~--~---------~--~----~------------~-------~--~----~
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