Re: [Rpy] rpy and mod_python problem

2008-07-17 Thread Laurent Gautier
-s unlimited, which makes the C >> stack size unlimited, and that fixed the problem, so I can use R-2.7 with >> rpy and Apache2/mod_python/Django. >> >> -Original Message----- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] Behalf Of Toby Hock

Re: [Rpy] rpy and mod_python problem

2008-07-14 Thread Toby Hocking
om: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Toby Hocking > Sent: Wednesday, June 25, 2008 9:29 AM > To: RPy help, support and design discussion list > Subject: Re: [Rpy] rpy and mod_python problem > > > I'm inclined to think that it is NOT an inherent inc

Re: [Rpy] rpy and mod_python problem

2008-07-14 Thread Laurent Gautier
> [mailto:[EMAIL PROTECTED] Behalf Of Toby Hocking > Sent: Wednesday, June 25, 2008 9:29 AM > To: RPy help, support and design discussion list > Subject: Re: [Rpy] rpy and mod_python problem > > > I'm inclined to think that it is NOT an inherent incompatibility problem wit

Re: [Rpy] rpy and mod_python problem

2008-07-07 Thread Toby Hocking
-2.7 with rpy and Apache2/mod_python/Django. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Toby Hocking Sent: Wednesday, June 25, 2008 9:29 AM To: RPy help, support and design discussion list Subject: Re: [Rpy] rpy and mod_python problem I'm inclin

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Toby Hocking
Gautier Sent: Wednesday, June 25, 2008 11:45 AM To: RPy help, support and design discussion list Subject: Re: [Rpy] rpy and mod_python problem 2008/6/25 Toby Hocking <[EMAIL PROTECTED]>: > I'm inclined to think that it is NOT an inherent incompatibility problem with > mod_python and R

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Laurent Gautier
would rpy2 w/ R-2.7 and Python 2.5 behave ? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Christof > Winter > Sent: Wednesday, June 25, 2008 7:54 AM > To: RPy help, support and design discussion list > Subject: Re: [Rpy] rpy and

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Toby Hocking
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Christof Winter Sent: Wednesday, June 25, 2008 7:54 AM To: RPy help, support and design discussion list Subject: Re: [Rpy] rpy and mod_python problem Laurent Gautier wrote, On 06/25/08 15:47: > Wild guess: this h

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Christof Winter
Laurent Gautier wrote, On 06/25/08 15:47: > Wild guess: this has something to do with the multiple interpreters > http://www.modpython.org/live/current/doc-html/pyapi-interps.html > > (reading the doc Python's C-level "Py_NewInterpreter()" is hinting that > this is likely the nature of the problem

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Laurent Gautier
use of from rpy import * is documented, e.g. at >> http://rpy.sourceforge.net/rpy/doc/rpy_html/Small-example.html#Small-example >> >> >> Cheers, >> Christof >> >> >> Re: [Rpy] rpy and mod_python problem >> From: Renato Alves <[EMAIL PROTECT

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Christof Winter
Toby Hocking wrote, On 06/24/08 20:20: > Hi Christof, did you ever resolve this problem? I am experiencing it now, and > I was wondering what you did for a solution/workaround. Thanks. Hi Toby: The problem is still there. My current workaround is to use cgi instead of mod_python, which is much s

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Christof Winter
ed for the mailing list >> until now. >> I tried the import rpy, it gives exactly the same error message. >> >> The use of from rpy import * is documented, e.g. at >> http://rpy.sourceforge.net/rpy/doc/rpy_html/Small-example.html#Small-example >> >> &g

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Renato Alves
t; > The use of from rpy import * is documented, e.g. at > http://rpy.sourceforge.net/rpy/doc/rpy_html/Small-example.html#Small-example > > > Cheers, > Christof > > > Re: [Rpy] rpy and mod_python problem > From: Renato Alves <[EMAIL PROTECTED]> - 2008-06-12 16:13 > It's no

Re: [Rpy] rpy and mod_python problem

2008-06-24 Thread Toby Hocking
Hi Christof, did you ever resolve this problem? I am experiencing it now, and I was wondering what you did for a solution/workaround. Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Christof Winter Sent: Wednesday, June 11, 2008 12:58 PM To: rpy-list

Re: [Rpy] rpy and mod_python problem

2008-06-12 Thread Renato Alves
It's not a good python practice to use: from somewhere import * Instead consider using: from somewhere import function1, function2, function3 ... (as needed) or simply: import rpy In the last case you will be using "rpy.r" instead of "r". Can you test if this works for your mod_python setup