You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Linda Liu <ly...@sbcglobal.net> on 2003/04/28 07:36:54 UTC

SSI config

Hi,I download Tomcat and followed the "SSI Config HOW-TO" on the Tomcat document:1) Changed $CATALINA_BASE/server/lib/servlets-ssi.renametojar to $CATALINA_BASE/server/lib/servlets-ssi.jar.2) Uncommented SSI section in $CATALINA_BASE/conf/web.xml file.When I run a test.shtml, I can only see the title, no error, it doesn't show any include files. Here is the test.shtml file: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<head>
<title>My SSI Test </title>
    <link rel="stylesheet" href="style.css">
</head><body bgcolor="#ffffff" link="#3333CC" vlink="#3333CC">
    
  <!-- menu file (on the left side) --> 
  <!--#include virtual="leftmenu.html" -->
    
  <!-- MAIN Doc File--> 
  <td valign="top" >
    <!--#include virtual="doctemp.html" -->
  </td>
  
<p>&nbsp;</p></body>
</html> Could you please help me to see what is the problem? Thanks,Linda