Hi,
I'm assuming that my problem started after a recent server change by my host, but I'm not sure. I just know that it worked for years, and today I noticed it doesn't and the host switched to a new server today. Anyway, here's my problem:
I'm using the following conditional ssi call to include a certain file depending on the day of the month (only showing day 1 and day 7 ... which is today's date:
So, today it should be including the file called tip7.html into a page called tod.shtml, but it's not working. No error messages or anything, just not including the file. All files are in the same directory.
The reason I'm wondering if it has to do with the server change is that once on another host, when trying to use the typical ssi date format to include the date on a page, the host said that the ssi formatting command I was trying to use did not work on that type of server, so I'm wondering if different servers recognize different date formatting code.
Any suggestions appreciated!
ginger
I'm assuming that my problem started after a recent server change by my host, but I'm not sure. I just know that it worked for years, and today I noticed it doesn't and the host switched to a new server today. Anyway, here's my problem:
I'm using the following conditional ssi call to include a certain file depending on the day of the month (only showing day 1 and day 7 ... which is today's date:
Code:
<!--#config timefmt="%d" -->
<!--#if expr="$DATE_LOCAL = 01" -->
<!--#include file="tip1.html" -->
<!--#elif expr="$DATE_LOCAL = 07" -->
<!--#include file="tip7.html" -->
<!--#endif -->
So, today it should be including the file called tip7.html into a page called tod.shtml, but it's not working. No error messages or anything, just not including the file. All files are in the same directory.
The reason I'm wondering if it has to do with the server change is that once on another host, when trying to use the typical ssi date format to include the date on a page, the host said that the ssi formatting command I was trying to use did not work on that type of server, so I'm wondering if different servers recognize different date formatting code.
Any suggestions appreciated!
ginger