On Friday 11 September 2009 01:52:10 lfrodrigues wrote:
> Hi,
>
> I want to deploy 2 django sites in different subdirectories so I have:
>
> <VirtualHost *>
>   <Location "/admin">
>       SetHandler python-program
>       PythonHandler django.core.handlers.modpython
>       SetEnv DJANGO_SETTINGS_MODULE admin.settings
>       PythonDebug On
>       PythonOption django.root /admin
>   </Location>
>
>   <Location "/websvc">
>       SetHandler python-program
>       PythonHandler django.core.handlers.modpython
>       SetEnv DJANGO_SETTINGS_MODULE webservice.settings
>       PythonDebug On
>       PythonOption django.root /websvc
>   </Location>
> </VirtualHost>
>
> When I go to http://host/admin/url/whatever sometimes sometimes it
> works ok, sometimes I get a "page no found" error from the other
> application " Using the URLconf defined in webservice.urls, ... "
>
> Any ideas why the applications are overlapping?

Yes, you should set the PythonInterpreter option [1] for mod_python, this 
happened to me when I first used mod_python with multiple projects configured 
this way. The PythonInterpreter value should be a unique string for each 
Location directive. This will force each location to run in it's own 
interpretter. As it is now they are choosing randomly which interpretter to 
use and causing the conflict. 

Please. someone if I'm wrong on the reason about how it is working without 
this, correct me.

Hope this helps,

Mike

[1] http://www.modpython.org/live/mod_python-3.2.5b/doc-html/dir-other-pi.html
-- 
ignorance, n.:
        When you don't know anything, and someone else finds out.

Attachment: signature.asc
Description: This is a digitally signed message part.

Reply via email to