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,
>
> 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
> "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
--- 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
>
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,
> "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
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