mod_perl & Upgrading Apache

2008-04-20 Thread Kevin Spencer
Hello all, I've had Apache 2.0.59 running with mod_perl for a while now with great success. Our sysadmin group now want to upgrade Apache to 2.2.6. Seeing as /usr/local/apache2/modules/mod_perl.so was built with 2.0.59 I would imagine it will need rebuilding once the Apache upgrade has taken pla

Re: CGI->params() should be tainted, right?

2007-11-28 Thread Kevin Spencer
On Nov 26, 2007 4:45 PM, jalex <[EMAIL PROTECTED]> wrote: > > > Scott Gifford wrote: > > > > > > FYI, this test case works properly under my installation of Debian > > mod_perl 1.29.0.2 under apache 1.3.34. > > > > Jalex, you might want to print out the value of your test variable and > > make sure

Re: How to extract a parameter

2007-01-16 Thread Kevin Spencer
On 1/16/07, Issac Goldstand <[EMAIL PROTECTED]> wrote: Instead of doing: my $q=CGI->new; my $param=$q->param('foo'); One needs to do: my $req=Apache2::Request->new($r); my $param=$req->param('foo'); I still fail to see the difficulty... Agreed. It's not difficult to *use*, just a little int

Re: Apache::Singleton

2004-10-19 Thread Kevin Spencer
On Mon, 18 Oct 2004 12:34:28 -0500, Frank Wiles <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > I've been trying to reach the maintainer of Apache::Singleton with > very little success. His name is Tatsuhiko Miyagawa > <[EMAIL PROTECTED]> I supplied him with a patch that makes the > mo