in reply to SSI problem...

What does it say in the server's error_log?

Replies are listed 'Best First'.
Re^2: SSI problem...
by Anonymous Monk on Jun 07, 2005 at 21:12 UTC

      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.

        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...