in reply to Overloading functions
One reason might be that you have written your handler as a method handler (sub handler ($$)), but are calling it like a normal handler.
Try this in your httpd.conf
PerlAuthenHandler MyOverride->handler
Or change your handler to a "normal" handler, like so:
sub handler { my $r = shift; ...
What about not printing to STDERR, but to use $r->log->error('bla')
You could post you message to the mod_perl mailing list, but please read this before you do. There are a lot of very clever minds there...
-- #!/usr/bin/perl for(ref bless[],just'another'perl'hacker){s-:+-$"-g&&print$_.$/}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Overloading functions
by BigJoe (Curate) on Jun 19, 2002 at 13:20 UTC |