On Sat, 2009-05-02 at 22:24 -0700, online wrote:
> I have mod_python set working fine with apache.
> 
> I have django setting as following at apache
> --------------------------------------------------------------------------------------------
> <VirtualHost *:80>
>     ServerAdmin webmas...@dummy-host2.li
>     DocumentRoot "C:/depot/projects/web/"
>     ServerName web
>     ServerAlias *.web
>     ErrorLog "logs/dummy-host2.li-error_log"
>     CustomLog "logs/dummy-host2.li-access_log" common
> 
> 
> <Location "C:/depot/projects/web/">

I'm surprised you get the error you do, because this line should pretty
much be a showstopper for having anything inside it ever being used by
an incoming request. Go back to the documentation for Apache again. You
haven't given the Location directive a URL. You've given it a directory
path.

I would also suspect you're going to need to set the PythonPath option,
based on the file paths you've mentioned here, since they won't be on
the default Python path.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to