Re: Apache::Session::MySQL, light/heavy proxy, wedging

2007-01-31 Thread Perrin Harkins
On 1/31/07, Todd Finney <[EMAIL PROTECTED]> wrote: Wouldn't throwing a return DECLINED unless $r->is_initial_req; at the top of the handler fix the problem, in that case? Probably, if you don't actually need this handler to run for the final URI. What's the purpose of the handler?

Re: Apache::Session::MySQL, light/heavy proxy, wedging

2007-01-31 Thread Perrin Harkins
On 1/31/07, Todd Finney <[EMAIL PROTECTED]> wrote: It's responsible for making sure that the client has a session, and it takes any of the values in the session and stores them in pnotes. Are you sure that you had removed all of these when you did the test of copying the session_id, and it stil

Re: Apache::Session::MySQL, light/heavy proxy, wedging

2007-01-31 Thread Perrin Harkins
On 1/31/07, Todd Finney <[EMAIL PROTECTED]> wrote: I can set it up so that it does the copy->save to pnotes dance for every one of the variables, except perhaps for the actual session handle, which is stuck into pnotes('SESSION_HANDLE'). If you really need to keep a ref to $session like that, t

Re: mod_perl2 make test fails various address related tests

2007-01-31 Thread Rafael Caceres
I'm doing a first pass at building mod_perl 2.0.3 for apache 2.0.59 with a SUSE Linux Enterprise Server 9. The server is configured not to use IPv6, apr was configured with --disable-ip6, apache 's config log says ac_cv_define_APR_HAVE_IPV6 = no and it was built with the --with-apr and --with-apr-u

Re: mod_perl2 make test fails various address related tests

2007-01-31 Thread Philip M. Gollucci
Rafael Caceres wrote: > I'm doing a first pass at building mod_perl 2.0.3 for apache 2.0.59 with > a SUSE Linux Enterprise Server 9. > The server is configured not to use IPv6, apr was configured with > --disable-ip6, apache 's config log says ac_cv_define_APR_HAVE_IPV6 = no > and it was built with

Re: Apache::Session::MySQL, light/heavy proxy, wedging

2007-01-31 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, Jan 31, 2007 at 08:29:55AM -0500, Perrin Harkins wrote: > On 1/31/07, Todd Finney <[EMAIL PROTECTED]> wrote: > >Wouldn't throwing a > > > > return DECLINED unless $r->is_initial_req; > > > >at the top of the handler fix the problem, in