Re: Apache2::Upload partial upload

2008-01-10 Thread Mark Alway
On Jan 10, 2008, at 6:50 AM, Malcolm wrote: On Wednesday 09 January 2008 10:28:39 pm Mark Alway wrote: (did I get this sent to the list or just back to Malcolm...I don't see the list address in the subscribe confirmation?) Just to me. cc'd back to the list I'm having a very similar prob

Re: loading Apache2::ServerRec

2008-01-10 Thread Perrin Harkins
On Jan 10, 2008 10:33 AM, Carl Johnstone <[EMAIL PROTECTED]> wrote: > Using the debian-stable-provided version of mod_perl, I've got an app that's > working fine however the way it was configured meant we were causing an > early load of perl during the configuration phase of apache. Just curious -

loading Apache2::ServerRec

2008-01-10 Thread Carl Johnstone
Using the debian-stable-provided version of mod_perl, I've got an app that's working fine however the way it was configured meant we were causing an early load of perl during the configuration phase of apache. I fixed the apache config so that mod_perl was loaded post-config then started getting

Re: Apache2::AuthCookie, $r->prev not defined in subrequests

2008-01-10 Thread Vegard Vesterheim
On Thu, 10 Jan 2008 13:48:26 +0100 Torsten Foertsch <[EMAIL PROTECTED]> wrote: > On Thu 10 Jan 2008, Vegard Vesterheim wrote: >> The problem I encounter is that the authenticated user is not >> propagated into to the subrequest, so my auth-handler can not do its >> job. The following code is from

Re: Apache2::Upload partial upload

2008-01-10 Thread Malcolm
On Wednesday 09 January 2008 10:28:39 pm Mark Alway wrote: > (did I get this sent to the list or just back to Malcolm...I don't see > the list address in the subscribe confirmation?) Just to me. cc'd back to the list > I'm having a very similar problem. My setup: Apache/2.2.6 (Unix) > mod_ssl/

Re: Apache2::Upload partial upload

2008-01-10 Thread Malcolm
On Wednesday 09 January 2008 9:54:57 pm Foo JH wrote: > Is there any value in receiving an incomplete upload? Yes. The upload consists of multiple files in a multi-part POST. Getting some of the files is better than getting none of the files. > Are you better off deciding how to avoid the time

Re: Apache2::AuthCookie, $r->prev not defined in subrequests

2008-01-10 Thread Torsten Foertsch
On Thu 10 Jan 2008, Vegard Vesterheim wrote: > The problem I encounter is that the authenticated user is not > propagated into to the subrequest, so my auth-handler can not do its > job. The following code is from Apache2::AuthCookie.pm: > >     unless ($r->is_initial_req) { >         if (defined $

Apache2::AuthCookie, $r->prev not defined in subrequests

2008-01-10 Thread Vegard Vesterheim
I have encountered a problem with Apache2::AuthCookie (version 3.10). I have created a module which inherits from Apache2::AuthCookie, and configured a PerlAuthenHandler and a PerlAuthzHandler for a given Location. File requests works ok, but not directory requests, I suspect this is related to ap