in reply to Getting mod_perl Handler to serve cgi sciprt

The simplest way is to tell apache to not use mod_perl on that script.
<File test.pl> SetHandler default </File>
Or something like that.

Replies are listed 'Best First'.
Re^2: Getting mod_perl Handler to serve cgi sciprt
by cowboy (Friar) on Mar 19, 2005 at 02:46 UTC
    Actually, you'd want to
    SetHandler cgi-script
      You're right of course.
Re^2: Getting mod_perl Handler to serve cgi sciprt
by blueberryCoffee (Scribe) on Mar 20, 2005 at 02:49 UTC
    Um, you might check that again
      Thank you for your help I figured it out.