Stories
Slash Boxes
Comments
NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.

All the Perl that's Practical to Extract and Report

The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More | Login | Reply
Loading... please wait.
  • Ok, I'll skip the mod_perl part, but for Mason, you just add this to your httpd.conf:


        PerlSetVar MasonCompRoot /my/doc/root
        PerlSetVar MasonDataDir /some/other/dir
        <FilesMatch "*.mason">
            SetHandler perl-script
            PerlHandler HTML::Mason::ApacheHandler
        </FilesMatch>


    Is that so hard?
    • yeahhhh ... if only it were that easy. The big difficulty is getting it setup, which requires mod_perl 1.21_07 (or some version above what I have already), and I can't re-compile the httpd b/c the box it's on has some proprietary software that's tied to the particular httpd I have.

      Jason