I'm kind of new to Mason, but I was having issues with the following
under mod_perl2 

<LocationMatch "(\.m(html|txt|pl|as)|dhandler|autohandler)$">

      SetHandler perl-script

      PerlInitHandler Apache::Constants::NOT_FOUND

 </LocationMatch>

 

 

I was able to get it to work by changing it to the following: 

 

<Perl>

         use Apache2::Const -compile => qw(NOT_FOUND);

</Perl>

 

<LocationMatch "(\.m(html|txt|pl)|dhandler|autohandler)$">

      SetHandler perl-script

      PerlInitHandler Apache2::Const::NOT_FOUND

 </LocationMatch>

 

Its looks kind of dirty but it works. 

 

 

 

Jason Fried

HGDC Infrastructure

 

BearingPoint

Management & Technology Consultants

 

5912 Hwy 49 Suite H-1 | Hattiesburg, MS 39401

601.584.1536 Phone | 601.584.6418 Fax

[EMAIL PROTECTED]

 

www.bearingpoint.com

 

***************************************************************************************************
The information in this email is confidential and may be legally privileged 
Access to this email by anyone other than the intended addressee is 
unauthorized. If you are not the intended recipient of this message, any 
review, disclosure, copying, distribution, retention, or any action taken or 
omitted to be taken in reliance on it is prohibited and may be unlawful. If you 
are not the intended recipient, please reply to or forward a copy of this 
message to the sender and delete the message, any attachments, and any copies 
thereof from your system.
***************************************************************************************************
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Mason-users mailing list
Mason-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mason-users

Reply via email to