Re: Issues with multiple instances of mod_python websites on the same machine

"L.Guruprasad" <[email protected]> Sun, 06 Dec 2009 16:16:11 +0530
Newsgroups gmane.comp.python.mod_python
Message-ID <[email protected]>
Hi,
Graham Dumpleton wrote:
> Each user must be given a separate Python sub interpreter instance to
> run their copy of the application in. This is done using the
> PythonInterpreter directive. Thus, set this directive inside of a
> Directory directive unique to web directory inside users account. For
> example:
> 
> <Directory /home/joe/public_html>
> PythonInterpreter user:joe
> </Directory>
> 
> <Directory /home/bob/public_html>
> PythonInterpreter user:bob
> </Directory>
> 
> Graham


Thank you Graham. This solves the issue. :-)

Regards,
Guruprasad