Hi,

On 17 Nov 2005 at 12:18, [EMAIL PROTECTED] wrote:

> I was on 5.5.9, I upgraded to 5.5.12 but the SSI scripts still arent'
> running.
> 
> there are no errors in any of the log files.

One thing that tripped me up early on after installing Tomcat 5.5 is that I 
wasn't seeing any logging when I thought I ought to be.  I eventually 
discovered that I needed to configure logging appropriately (using a 
logging.properties file in the server\classes directory).  Just thought I'd 
mention this in case you weren't aware of it.

> here's the entire contents of the calling page in case this helps:
> 
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <html>
> <head>
>  <title>home</title>
> 
> </head>
> 
> <body>
> This is the home page
> <!--#include file="left_nav.shtml"-->

Ah, this could be a problem.  From the "Directives" section near the 
bottom of the Tomcat Docs page on SSI, I believe you should be using 
"virtual" instead of "file" here, ie:

<!--#include virtual="left_nav.shtml"-->

> <!--#ECHO VAR="DATE_LOCAL" -->

Also, not sure here, but it wouldn't surprise me if the directives were 
case sensitive - this might work if it were:

> <!--#echo var="DATE_LOCAL" -->

HTH,

Rob Hills
NetPaver Pty Ltd
Western Australia

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to