in reply to Re: Mod_Perl2: Cannot resolve handler
in thread Mod_Perl2: Cannot resolve handler

Duh! Of course. Thanks for pointing that out. It works now.

  • Comment on Re^2: Mod_Perl2: Cannot resolve handler

Replies are listed 'Best First'.
Re^3: Mod_Perl2: Cannot resolve handler
by merlyn (Sage) on Oct 30, 2005 at 22:19 UTC
    A few more things:
    • Your module doesn't need a shebang line, although I traditionally just put "#!perl" so that emacs will go into cperl mode.
    • You don't need "Options +ExecCGI" in a URL that's not using CGI-like behavior (mod_cgi or one of the *::Registry* perl doodads).
    • You don't need "PerlOptions +ParseHeaders" unless you are planning on outputting content without a header. It also slows things down a bit.

    -- Randal L. Schwartz, Perl hacker
    Be sure to read my standard disclaimer if this is a reply.