I tried the following per the above reply and I no longer
get an error, but nothing happens in response to selecting anything. I also can't logout. Is this a problem to report to Host Server and if so, what do I tell them exactly what the code is attempting to do?
-------------------------------------------------------
In the calendar_admin.pl file, find the line:
$Template::CGI_URL =
$ENV{'SCRIPT_NAME'} | | $ENV{'REQUEST_URI'};
You can try changing it to the following to
see if it makes any difference:
$Template::CGI_URL =
$ENV{'REQUEST_URI'} | | $ENV{'SCRIPT_NAME'};
-edited so it doesn't mangle - <djm>
-------------------------------------------------------
Thanks,
Dennis
------------------