>>ASP 0113 / Script timed out errors
Well, you clearly have a timeout error. So you should consider moving to db server (like MySQL => Free and reliable) or MSSQL Server (Not free)
In the meantime, to avoid that error, try increasing the execution time on the script in question by starting it with:
Server.ScriptTimeout=200 'if 200 secs is not enough try a bigger value
Main Topics
Browse All Topics





by: cb1393Posted on 2008-09-17 at 13:10:57ID: 22503099
A couple of words come to mind though: "memory" and "leak". Especially with using Access. But I won't mention anything more about using Access. :-)
To run the traps, it would certainly help things to get direct access to the server.
I would first use taskman on the server to determine if it's CPU usage that's causing the slowdown and whether or not the culprit is the web service (since it may be something unrelated to the web site entirely). If the CPU spikes are web-related, it's likely due to a loop problem on a particular page, or excessive looping/calculations on multiple pages.
If the CPU is stable but the system is low on memory, it could be due to connections/objects not being destroyed, or excessive use of Session variables... or... well... you know. :-)