Hi, I am using Apache 1.3.14, mod_perl 1.24_01, perl 5.6 and
Apache::SSI 2.13

in my httpd.conf i have the following:

        PerlRequire /usr/local/web/perllib/Apache/tSSI.pm
        <Files ~ "\.bozo$">
                SetHandler perl-script
                PerlHandler Apache::tSSI
        </Files>
        AddType text/html .bozo

and the tSSI.pm contains:

        package Apache::tSSI;

        use strict;
        use vars qw(@ISA);

        use Apache::SSI;
        use Apache::Constants qw(:common OPT_EXECCGI);
        use Apache::File;

        @ISA = qw(Apache::SSI);

        sub ssi_bozo {
                my($self, $args) = @_;

                return "blah blah";
        }

        1;


and finaly, one file, named test.bozo contains, among some plain
html the <!-- #bozo -->

the problem is, when I fetch the file, the above remains intact, ie.
the SSI doesn't process it? I've tried also with plain Apache::SSI
directives (ie. without subclassing it) and it still doesn't work.;-(
any suggestions?
(this setup sucessfully runs apache::asp and html::embperl, so i don't
think it is from the mod_perl/apache/perl combo)

any help would be appreciated...

-tacho

--
   [i don't follow] | [http://daemonz.org/ || [EMAIL PROTECTED]]
   [everything should be made as simple as possible, but no simpler]
   0x44FC3339 || [02B5 798B 4BD1 97FB F8DB 72E4 DCA4 BE03 44FC 3339]

Reply via email to