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

Tue Jun 07 22:08:48 2005 error client 127.0.0.1 unknown directive "perl" in parsed doc ...public_html/www_root/gpl-home.shtml
Tue Jun 07 22:08:49 2005 error client 127.0.0.1 File does not exist: ...public_html/www_root/favicon.ico
This icon!?!? I don't use it!!!

Replies are listed 'Best First'.
Re^3: SSI problem...
by ikegami (Patriarch) on Jun 07, 2005 at 21:54 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...

        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.