Re: [OT] mod_perl presentation slides at the 2nd Italian Perl Workshop

2005-07-14 Thread Terrence Brannon
Enrico Sorcinelli <[EMAIL PROTECTED]> writes: > Hi all, > > I just published the slides of the two mod_perl talks I gave I gave at the 2nd these are powerful talks! > > Italian Perl Workshop on June 2005 (http://www.perl.it/workshop) > > - "Building a real web application with HTML::Mason" > htt

Re: setting up virtual hosts

2005-07-14 Thread Terrence Brannon
Enno <[EMAIL PROTECTED]> writes: > as far as I know, that uselib vulnerability has nothing to do with > mod_perl. it's a kernel exploit. using a different user wont fix the > problem, updating your kernel will. so why not do that? I wish I could give you a link, but I cant find it. However, the k

Re: setting up virtual hosts

2005-07-14 Thread Terrence Brannon
Geoffrey Young <[EMAIL PROTECTED]> writes: >>Unfortunately, we have been hit by a [2]uselib() privilege elevation >>exploit. As a result, our sysadmins have decided that any CGI/mod_perl >>process has to run as a specific user instead of as www-data. > > I'll admit to not being the bes

Re: $r->notes and logging

2005-07-14 Thread Anthony Gardner
Sure, I'd like to log particular error msgs and I saw in the Apache manual mod_log_config. Amongst the configurations are things like %h - for host, %u - for user and things like that. There's an option %{foo}n - for notes. I was wondering if that meant I could get sth out of $r->notes or $r->pno

Re: $r->notes and logging

2005-07-14 Thread Tom Schindl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, could you explain in more detail what you are trying to achieve maybe it's because english is not my native language but I could not grasp anything from your information. Tom Anthony Gardner schrieb: > Don't go mad with me ;) > > I'm looking fo

Re: Apache Request problems with tildes...

2005-07-14 Thread Joe Schaefer
Marc Gràcia <[EMAIL PROTECTED]> writes: > The problem is the value of a post parameter ends with an accentued char > (áó etc... I dont know if you can view that...) the full process dies in > the > > my $upload = $ar->upload($param); > > line and an Interna

Re: Apache::Test assumes Test::Builder < 0.29

2005-07-14 Thread Dorian Taylor
> this is fixed in svn hm weird i thought i updated before i checked again. > why? I think that at best I was mis-using the call to reset() - it always > accepted $self as an argument, but since it wasn't actually being used I > ignored it, mostly because I didn't want to mess around with gettin

Re: Apache::Test assumes Test::Builder < 0.29

2005-07-14 Thread Geoffrey Young
Dorian Taylor wrote: > apparently the reset() method of Test::Builder >= 0.29_01 has been > turned into an instance-only method, thus any call to > Apache::Test::test_pm_refresh() when using Apache::Test qw(-withtestmore) > will cause test code to die. this is fixed in svn > perhaps schwern sho

Apache::Test assumes Test::Builder < 0.29

2005-07-14 Thread Dorian Taylor
apparently the reset() method of Test::Builder >= 0.29_01 has been turned into an instance-only method, thus any call to Apache::Test::test_pm_refresh() when using Apache::Test qw(-withtestmore) will cause test code to die. perhaps schwern should be notified as well? .d

Re: Apache Request problems with tildes...

2005-07-14 Thread Philip M. Gollucci
Forwarding to apreq-dev list. I might be a ble to look at this but not until later. Marc Gràcia wrote: Hi everybody, I think we've found a curious bug in libapreq2. There's a snippet of code on we basically are processing all post parameters from a request: if ($req->request_me

$r->notes and logging

2005-07-14 Thread Anthony Gardner
Don't go mad with me ;) I'm looking for a way to log particular msgs and saw mod_log_config and Custom Log Formats. Am I right in thinking that I can strip the error msg contained in ... $r->notes("ALARM" => "sth very bad has happened") with ... %{ALARM}n placed in a custom log format str

[Fwd: ApacheCon US 2005: Call for Participaton]

2005-07-14 Thread Geoffrey Young
Original Message Subject: ApacheCon US 2005: Call for Participaton Date: Wed, 13 Jul 2005 18:27:45 -0400 From: Rodent of Unusual Size <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Organization: The Apache Software Foundation To: [EMAIL PROTECTED] In case you missed the news,

Re: Apache Request problems with tildes...

2005-07-14 Thread Marc Gràcia
Well, just forgot to say that "$ar" is the Apache2::Request. El dj 14 de 07 del 2005 a les 11:08 +0200, en/na Marc Gràcia va escriure: Hi everybody, I think we've found a curious bug in libapreq2. There's a snippet of code on we basically are processing all post parameters from

Apache Request problems with tildes...

2005-07-14 Thread Marc Gràcia
Hi everybody, I think we've found a curious bug in libapreq2. There's a snippet of code on we basically are processing all post parameters from a request:     if ($req->request_method() eq 'POST')     {     my $hay_uploads=0;     foreach my $param (keys %args)