What exactly are the URL(s) which generate the errors? Have you looked at them
closely to see if anything's out of place??
Edit: This is what I found.
When at ww.leagueofdecency.com/cgi-bin/calendar_admin.pl, clicking the next button, I get taken to ww.leagueofdecency.com/calendar_admin.pl (note the lack of "cgi-bin") which of course generates the error (since no script is at that location).
Something similar occurs with the calendar.pl file but *may* be corrected once you get through the administrations set up screens.
It looks like your server is not reporting the $ENV{'SCRIPT_NAME'} value properly. In the calendar_admin.pl file find the line:
$Template::CGI_URL = $ENV{'SCRIPT_NAME'} | | $ENV{'REQUEST_URI'};
and try reversing the variables. Eg.
$Template::CGI_URL = $ENV{'REQUEST_URI'} | | $ENV{'SCRIPT_NAME'};
If that doesn't work, you may have to set those paths manually or check with your host to see what environment variables you can use the retrieve the proper paths.
JMO
Dan O.
[This message has been edited by DanO (edited February 09, 2005).]