in reply to Re^2: SSI problem...
in thread SSI problem...

That means that Apache::SSI is not getting loaded or used. Try commenting out

AddHandler server-parsed .shtml

(the non-Perl SSI) from your web server's configuration file and adding

<Files *.shtml> SetHandler perl-script PerlHandler Apache::SSI </Files>

(the mod_perl SSI) in its place.

Replies are listed 'Best First'.
Re^4: SSI problem...
by Anonymous Monk on Jun 07, 2005 at 23:04 UTC
    Wed Jun 08 00:00:45 2005 error client 127.0.0.1 Can't locate Apache/SSI.pm in @INC (@INC contains: C:/indigoperl/perl/lib C:/indigoperl/perl/site/lib . C:/indigoperl/apache/ C:/indigoperl/apache/lib/perl) at (eval 4) line 3.
    it is inside of C:/indigoperl/perl/lib :)..!!!

    Wed Jun 08 00:00:45 2005 error client 127.0.0.1 File does not exist: C:/Documents and Settings/MarcoSilva/Os meus documentos/public_html/www_root/favicon.ico
    Thanks for your help...

      Apache::SSI isn't installed. If Apache::SSI comes with mod_perl, mod_perl isn't installed right. Apache::SSI is what allows you too put Perl in SSI docs.

      The second error is not really an error. Feel free to ignore it.