** I am trying to set up a
single calendar **
** <!--#include virtual="calendar.cgi?calendar=default"--> **
** <!--#include virtual="calendar.cgi?calendar=small"--> **
Each SSI tag above is calling a different calendar, one with a key as "default" and one with a key as "small". I assume you don't have a calendar actually set up with a key of "small" which is likely why you're getting a blank page.
A single calendar can only have defined one set of templates for it at a time. You can however display the calendar on any template from that set. Eg. One page displaying the events on ssi.html and the other page displaying them on ssi-2.html (once you make it)... provided your server recognizes the 'include virtual' SSI tag so you can pass the template file name.
If you want to use different templates with SSI calls, than you must add the template reference to the SSI tags. Eg.
<!--#include virtual="calendar.cgi?template=Template_File_Name_Here.html"-->
BTW. You'll likely have to pass the rest of the SSI template variables as well as shown in my second reply in the previous forum message "SSI head ache". The calendar=... parameter is not needed if just calling the default calendar.
That message and other useful ones can be found linked from the Unofficial CalendarScript - Mods and Plugins site in the Links section.
Dan O.
[This message has been edited by DanO (edited September 27, 2004).]