Re: mod_perl in larger scale environments

2010-04-15 Thread Brad Van Sickle
What are you guys using to cluster the LVS servers? Is that functionality native to LVS? Also, I've come across "fastcgi" a lot in researching this and I'm having trouble understanding exactly what it is. The fastcgi website makes it sound like it's almost a mod_perl replacement and another

Re: mod_perl in larger scale environments

2010-04-15 Thread Cees Hek
On Thu, Apr 15, 2010 at 4:38 PM, Cosimo Streppone wrote: > In data 15 aprile 2010 alle ore 05:11:15, Brad Van Sickle > ha scritto: > >> LVS does sound interesting but in your infrastructure layout aren't your >> single LVS load balancers single points of failure? > > I simplified a bit too much :

[ANNOUNCE] Apache-Test 1.32

2010-04-15 Thread Fred Moyer
MD5sum - e9249af12e427d58802f1715116aeba7 Coming to a CPAN mirror near you. Fix issue with recent feature where lack of libapreq resulted in test failure. [Philippe M. Chiasson] Added t_{start,read,finish}_file_watch to Apache::TestUtil [Torsten Foertsch] -- Forwarded message -

Apache::AuthenNTLM not failing through to basic auth

2010-04-15 Thread C. Bensend
Hey folks, I just got NTLM authentication working on one of my Red Hat 5.4 machines thanks to this module. Oh thank god, you wouldn't believe how many different methods I had tried until this module worked. I did have a few things that I had to change to get it working: 1) I had to comme

Re: accessing environment variables set by other modules

2010-04-15 Thread André Warnier
Chris Datfung wrote: I want to use mod-perl to edit server responses under certain conditions. My plan was to use various modules, like mod-setenvif and mod-security to set an environment variable and then have mod-perl edit the response body only run when the environment variable is set. I tried

Re: accessing environment variables set by other modules

2010-04-15 Thread Adam Prime
You need to use $f->r->subprocess_env in the filter. subprocess_env is a RequestRec method, not a Filter method. Adam Chris Datfung wrote: On Thu, Apr 15, 2010 at 12:23 AM, Perrin Harkins > wrote: The subprocess_env info that Adam sent you should have worked.

Re: accessing environment variables set by other modules

2010-04-15 Thread Torsten Förtsch
On Thursday 15 April 2010 11:10:49 Chris Datfung wrote: > Thanks, subprocess_env works when just using a response handler. When used > with a filter I get the following error message: > > == > [Thu Apr 15 11:47:34 2010] [error] [clien

Re: accessing environment variables set by other modules

2010-04-15 Thread Chris Datfung
On Thu, Apr 15, 2010 at 12:23 AM, Perrin Harkins wrote: > The subprocess_env info that Adam sent you should have worked. Can > you show us what you tried? Can you try it in a response handler to > make sure it's not an odd bug with filters? > > Hi Perrin, Thanks, subprocess_env works when just