Peter Rothermel wrote:
> Can somebody help me out with Method Handlers in
> Apache2 - mod_perl 1.99? I'm new to windows and its
> threading issues.
[snip]
> sub authenticate ($$) {
> my ($self, $r) = @_;
> return OK;
> }
I haven't played much with mod_perl 2.0 yet, but I know that this format is deprecated
now.
instead, try
sub authenticate : method {
...
}
and look for method handlers in design.pod and compat.pod
HTH
--Geoff
- Help with Method Handlers in mod_perl 1.99 Peter Rothermel
- Re: Help with Method Handlers in mod_perl 1.99 Geoffrey Young
- Re: Help with Method Handlers in mod_perl 1.99 Peter Rothermel
- Re: Help with Method Handlers in mod_perl 1.9... Doug MacEachern
- [Win32] documentation on mod_perl-2 Randy Kobes
- Scope of Perl Special Variables Bill Catlan
- Re: Scope of Perl Special Variables Stas Bekman
- Re: Scope of Perl Special Variables Bill Catlan
- Re: Scope of Perl Special Variables Stas Bekman
- Re: Scope of Perl Special Variables Jon
- Re: Scope of Perl Special Variables Bill Catlan
- Re: Scope of Perl Special Variables Mark Fowler
