Hello I had been trying to use Apache::OutputChain Apache::SSIChain Apache::Registry to allow me to use SSI in the output of my mod_perl programs. The ssi content always wound up at the top of the output. After reading the mailing list it seemed that Apache::RegistryFilter Apache::SSI was the way to go.
Well it works great except that the header type is always text/plain so I get the HTML source instead of the rendered page. My setup is as follows PerlModule Apache::DBI PerlModule Apache::Registry PerlModule Apache::SSI PerlModule Apache::FakeSSI PerlModule Apache::Filter PerlModule Apache::RegistryFilter <Location /cgi-bin/> SetHandler perl-script Options +ExecCGI PerlSetVar Filter On PerlHandler Apache::RegistryFilter Apache::SSI #also tried Apache::FakeSSI </Location> It seems that PerlSendHeader On has no effect when you are using Apache::RegistryFilter, how can I get the proper headed type sent? Thanks, Robert -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html