Hi,

I am running Apache 1.3.14 w/ mod_perl 1.24 on a Linux RedHat 6.2 machine.

I have recently began to implement mod_perl to some of my content.

As per "Writing Apache Modules with Perl and C" book, I wrote a footer for 
each page, with the following directive in httpd.conf:

   <Files ~ "\.html?$">
    SetHandler perl-script
    PerlHandler Apache::Footer
   </Files>

This puts the footer nicely to all files .htm or .html

However, I have a few .shtml pages as part of my site, which have worked 
with no errors.  After making this change:

   <Files ~ "\.s?html?$">
    SetHandler perl-script
    PerlHandler Apache::Footer
   </Files>

..I imagined that .shtml files would show a footer at the bottom of pages.

However, what I found is that, for the .shtml pages, while the mod_perl 
footer works with no errors, the SSI does not work at all, and I can't find 
anything strange regarding this in error_log.

Has anyone had any similar problem?  Any advice / workarounds, etc. would be 
valued.

Thanks alot

..Tom


_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Reply via email to