Marlier, Ian wrote:
Hey, all --

I recently finished setting up an install of Apache2 and modperl on a
SuSE 9.1 server.  The install was done from RPM.

The server primarily runs a trouble ticketing system which uses
HTML::Mason and MySQL for page displays and content.  All of the perl
functionality is present and working.

The problem at the moment is that modperl seems to be
over-riding/preventing the display of index.html index pages (or
index.php, or index.shtml, or anything else).  Has anyone else seen this
behavior, or does anyone have suggestions as to where I might start to
look?

I have a vague suspicion that the "set-handler perl-script" option is
somehow responsible...but I'm not sure...

Correct. This:

<Location />
        SetHandler perl-script
        PerlHandler RT::Mason
</Location>
</IfModule>

Tells apache to delegate all response phase handling to modperl. To adjust certain filetypes to be handled by other handlers, add another rule *after* that section. e.g.:


<Files ~ "\.shtml">
  SetHandler default-handler
</Files>


-- __________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

--
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to