Re: Multiple Django installations on the same Apache with mod_python

2007-03-27 Thread Jeremy Dunck
On 3/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > SetHandler python-program ... > > SetHandler python-program The usual way to do this is to have virtual hosts and use the same root URL on both. Otherwise, consider having separate ROOT_URLCONF's for each to factor ou

Re: Multiple Django installations on the same Apache with mod_python

2007-03-27 Thread [EMAIL PROTECTED]
Hi all, I'm running Debian Sarge and installed the 4suite debian package from the stable branch (python-4suite-0.99cvs2005041). By removing it and installing the latest version of 4suite from the web site, it works like a charm. Hope this helps someone georges. On Mar 19, 4:28 pm, "[EMAIL PROT

Re: Multiple Django installations on the same Apache with mod_python

2007-03-18 Thread [EMAIL PROTECTED]
Hi Graham, thank you for your reply. I have tried without this directive line and got the same behavior. cheers, georges On Mar 19, 3:50 pm, "Graham Dumpleton" <[EMAIL PROTECTED]> wrote: > Remove: > > PythonInterpPerDirective On > > You are not meant to have that line. Only use the PythonInte

Re: Multiple Django installations on the same Apache with mod_python

2007-03-18 Thread Graham Dumpleton
Remove: PythonInterpPerDirective On You are not meant to have that line. Only use the PythonInterpreter directive line. Graham On Mar 19, 3:16 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi All, > > I'm trying to set up multiple Django installations on the same Apache > server, same

Multiple Django installations on the same Apache with mod_python

2007-03-18 Thread [EMAIL PROTECTED]
Hi All, I'm trying to set up multiple Django installations on the same Apache server, same application but different code versions, one for tests, one for development... I've followed the instructions from http://www.djangoproject.com/documentation/modpython/ to set them up: ... SetHa