Yahoo!

2004-06-18 Thread David Arnold
All, Congrats to me! [EMAIL PROTECTED] logs]# cat error_log [Fri Jun 18 23:35:31 2004] [warn] Init: Session Cache is not configured [hint: SSLSessionCache] [Fri Jun 18 23:35:34 2004] [notice] Digest: generating secret for digest authentication ... [Fri Jun 18 23:35:34 2004] [notice] Digest: done

Re: [mp2] ?Any clue when stable release comes out?

2004-06-18 Thread Stephen Clouse
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, Jun 18, 2004 at 02:07:19PM -0700, Bart Simpson wrote: > Starting a project expected to be done by Xmas. Its > billing software for a small ISP. Will a production > release of MP2 be out by then or when does anyone have > an idea when one will b

Re: [mp2] ?Any clue when stable release comes out?

2004-06-18 Thread Bart Simpson
--- ydnar <[EMAIL PROTECTED]> wrote: > Been using mp2 in production for a large billing > project for a year now. > In that year we've only had 2 problems related to > mod_perl and they were > minor and addressed quickly. > I'm going to use it for my project, too :) Much thanks, ydnar.

Re: [mp2] ?Any clue when stable release comes out?

2004-06-18 Thread ydnar
Been using mp2 in production for a large billing project for a year now. In that year we've only had 2 problems related to mod_perl and they were minor and addressed quickly. y Bart Simpson wrote: Starting a project expected to be done by Xmas. Its billing software for a small ISP. Will a produc

Re: [mp2] ?Any clue when stable release comes out?

2004-06-18 Thread Geoffrey Young
Bart Simpson wrote: > Starting a project expected to be done by Xmas. Its > billing software for a small ISP. Will a production > release of MP2 be out by then or when does anyone have > an idea when one will be out?? http://marc.theaimsgroup.com/?l=apache-modperl&m=108572174823351&w=2 HTH --G

[mp2] ?Any clue when stable release comes out?

2004-06-18 Thread Bart Simpson
Starting a project expected to be done by Xmas. Its billing software for a small ISP. Will a production release of MP2 be out by then or when does anyone have an idea when one will be out?? Much thanks, __ Do you Yahoo!? Read only the mail you wa

RE: [mp2] losing POST vars with PerlOutputFilterHandler+mod_proxy

2004-06-18 Thread Eric J. Hansen
...and, its on a heavily-loaded commercial site, I might add... :) > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Joe Schaefer > Sent: Friday, June 18, 2004 4:08 PM > To: [EMAIL PROTECTED] > Subject: Re: [mp2] losing POST vars with > PerlOutputFilterHandler+mod

Re: [mp2] losing POST vars with PerlOutputFilterHandler+mod_proxy

2004-06-18 Thread Joe Schaefer
Geoffrey Young <[EMAIL PROTECTED]> writes: > Eric J. Hansen wrote: > > Thanks, Joe! I implemented your suggestion (1), and the following > > works nicely... (added to my request filter) > > > > sub init : FilterInitHandler { > > my $f = shift; > > my $r = $f->r; > > wow, a Filte

Re: [mp2] losing POST vars with PerlOutputFilterHandler+mod_proxy

2004-06-18 Thread Geoffrey Young
Eric J. Hansen wrote: > Thanks, Joe! I implemented your suggestion (1), and the following works nicely... > (added to my request filter) > > sub init : FilterInitHandler { > my $f = shift; > my $r = $f->r; wow, a FilterInitHandler in the wild. guess it was a good idea to suppo

Re: [mp2] Authen handler with htgroup authorization

2004-06-18 Thread Geoffrey Young
> I should have mentioned that replacing my Perl Authen handler with an > AuthPasswordFile works fine. > > I'll try the latest http2 snapshot. I can't seem to reproduce the problem in an isolated context. please give this http://perl.apache.org/~geoff/authen-bug-mp2.tar.gz a whirl and see

Adjustments for older Mod Perl

2004-06-18 Thread David Arnold
All, I am working through: http://perl.apache.org/docs/1.0/guide/porting.html Under "The First Mystery" is the directive: Modify the httpd.conf file in the following way: PerlSetEnv PERLDB_OPTS "NonStop=1 LineInfo=/tmp/db.out AutoTrace=1 frame=2" PerlModule Apache::DB PerlFixupHandle

httpd timeout

2004-06-18 Thread Udlei Nattis
hi in last month i change version of modperl in my production site... mp1 -> mp2 but now i have problem when muth users connect in my server for example, www.techcar.com.br -> timeout dont is dns or apache, modperl ignore my request and dont return site no errorlog, no die, no warn ... it is kn

Re: AuthCookieNTLM and browser hangs

2004-06-18 Thread Shannon Eric Peevey
Brett Beaumont wrote: I tried reducing ntlmsemtimeout to 1, but did not see any change in the behaviour. I have also managed to get this module to hang under our development environment now, though I'm not sure how come. Can you sniff the packets, and send a copy of the capture? Then we should

RE: [mp2] losing POST vars with PerlOutputFilterHandler+mod_proxy

2004-06-18 Thread Eric J. Hansen
Thanks, Joe! I implemented your suggestion (1), and the following works nicely... (added to my request filter) sub init : FilterInitHandler { my $f = shift; my $r = $f->r; # instantiate an Apache::Request object here so we have access to # CGI params during the ou