Dan O,
Thanks much. It appears to be a time stamp issue with Powweb. RonL and I both posted to Powwebs user forum and found someone with a similar problem with time stamps and there session time with their database. He came up with a fix that would be temporary until Powweb addresses the time stamp. The following is the entry of his fix. Do you know if we can increase the auth time for calendarscript and where we can do it?
//////////////
Well, since the timestamp problem hasn't been fixed, I went in and edited my .cfg file and changed the length of time by adding 100,000 seconds instead of 21,000 seconds I have had it set at for so long and suddenly my databases are working again.
This is the part in my config file:
Original setting:
# The amount of time in seconds that user files are kept in the
# auth directory before the program removes them. 2-6 hours is
# probably a good value.
$auth_time = 21600; # 6 hours (in seconds)
New setting that's working now:
# The amount of time in seconds that user files are kept in the
# auth directory before the program removes them. 2-6 hours is
# probably a good value.
$auth_time = 121600; # 33.8 hours (in seconds)
------------------