Re: Unable to get PerlAuthenHandler to work in mp2

2008-08-21 Thread Philip M. Gollucci
Clinton Gormley wrote: Try adding "warn $msg" statements (instead of printing to a file). Perl's "warn" function prints to STDERR, which is usually appended to the web server's errors log. To read the errors as they are printed, do the following (provided you have shell access on your server,

Re: Unable to get PerlAuthenHandler to work in mp2

2008-08-20 Thread Clinton Gormley
> > Try adding "warn $msg" statements (instead of printing to a file). > > Perl's "warn" function prints to STDERR, which is usually appended to the web > server's errors log. To read the errors as they are printed, do the > following (provided you have shell access on your server, and it's r

Re: Unable to get PerlAuthenHandler to work in mp2

2008-08-20 Thread Brett Randall
> "Perrin" == Perrin Harkins <[EMAIL PROTECTED]> writes: > On Wed, Aug 20, 2008 at 5:42 PM, Brett Randall <[EMAIL PROTECTED]> wrote: >> I was wondering about debugging... I'll probably do the good old open >> a file, write to it after each line, and see where it stops writing > No need to ope

Re: Unable to get PerlAuthenHandler to work in mp2

2008-08-20 Thread John Drago
--- On Wed, 8/20/08, Brett Randall <[EMAIL PROTECTED]> wrote: > From: Brett Randall <[EMAIL PROTECTED]> > Subject: Re: Unable to get PerlAuthenHandler to work in mp2 > To: "Perrin Harkins" <[EMAIL PROTECTED]> > Cc: modperl@perl.apache.org >

Re: Unable to get PerlAuthenHandler to work in mp2

2008-08-20 Thread Perrin Harkins
On Wed, Aug 20, 2008 at 5:42 PM, Brett Randall <[EMAIL PROTECTED]> wrote: > I was wondering about debugging... I'll probably do the good old open a > file, write to it after each line, and see where it stops writing No need to open a file. Anything you print to STDERR goes to apache's error_log,

Re: Unable to get PerlAuthenHandler to work in mp2

2008-08-20 Thread Brett Randall
> "Perrin" == Perrin Harkins <[EMAIL PROTECTED]> writes: > On Wed, Aug 20, 2008 at 3:03 AM, Brett Randall <[EMAIL PROTECTED]> wrote: >> I'm trying to get PerlAuthenHandler to work but when I go to a URL >> that I've set it up on, it asks for a username and password and then >> lets me in no ma

Re: Unable to get PerlAuthenHandler to work in mp2

2008-08-20 Thread Perrin Harkins
On Wed, Aug 20, 2008 at 3:03 AM, Brett Randall <[EMAIL PROTECTED]> wrote: > I'm trying to get PerlAuthenHandler to work but when I go to a URL that > I've set it up on, it asks for a username and password and then lets me > in no matter what I type. Have you debugged this code to figure out which