Author |
Topic  |
|
MaGraham
Senior Member
   
USA
1297 Posts |
Posted - 02 September 2012 : 20:25:32
|
Could anyone tell me what to do about this error message? This is Soooo over my head! ;(
Active Server Pages error 'ASP 0113'
Script timed out
/community/admin_mod_dbsetup.asp
The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools.
Here's a copy of my admin_mod_dbsetup.asp in txt format since it referenced that file.
copy of admin_mod_dbsetup.asp in txt format
|
"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 03 September 2012 : 00:25:30
|
That file probably isn't the cause. Which mod dbs*.asp file were you trying to install? |
 |
|
MaGraham
Senior Member
   
USA
1297 Posts |
Posted - 03 September 2012 : 00:35:04
|
It's the "IP to Country Mod" and it was the first of four database files in that mod.
|
"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley |
 |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 03 September 2012 : 00:56:07
|
That mod works fine on even an Access DB. So you'll have to edit your timeout value in IIS. To do this:
1) Stop your IIS service. Go to start/run, type "services.msc" and hit enter. Then browse to "IIS Admin Service", right-click, stop.
2) Edit your "metabase.xml" file:
a) Go to start/run,type "notepad" and hit enter. Then hit alt-F,O and type "%windir%\system32\inetsrv\metabase.xml" in the box below. Hit enter.
b) Hit Ctrl-F (find) and type "AspMaxRequestEntityAllowed" (without the quotation marks) and hit enter. Change the value to: "1073741824" (including the quotation marks). Save the file.
3) Restart IIS. |
 |
|
MaGraham
Senior Member
   
USA
1297 Posts |
Posted - 03 September 2012 : 11:49:22
|
Carefree, what does one do if the IIS is not on the list? I have XP Media Center Version 2002 on this borrowed computer, since mine died.
Click here for a screen shot of the Admin Service.
|
"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley |
Edited by - MaGraham on 03 September 2012 11:54:36 |
 |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 03 September 2012 : 18:05:57
|
That has to be done on the server hosting the site, not on your personal PC. If you don't have access to the server, ask your host to modify the time out value. If he/she will not do it, you can set a temporary time-out value on the page itself ... but it may not work if the IIS limit is too low.
In "admin_mod_dbsetup.asp", look for the following lines (appx 42-45):
%>
<!--#include file="inc_sha256.asp"-->
<!--#include file="inc_header.asp"-->
<%
Below those, add this:
Server.ScriptTimeout = 36000
|
 |
|
MaGraham
Senior Member
   
USA
1297 Posts |
Posted - 03 September 2012 : 20:48:34
|
quote: Originally posted by Carefree
. . .you can set a temporary time-out value on the page itself ... but it may not work if the IIS limit is too low.
In "admin_mod_dbsetup.asp", look for the following lines (appx 42-45):
%>
<!--#include file="inc_sha256.asp"-->
<!--#include file="inc_header.asp"-->
<%
Below those, add this:
Server.ScriptTimeout = 36000
That worked PERFECT!
You never cease to amaze me, Carefree!!
Thank you so much!!
|
"Do all the good you can, by all the means you can, in all the ways you can, at all the times you can, to all the people you can, as long as ever you can." - John Wesley |
Edited by - MaGraham on 04 September 2012 05:55:50 |
 |
|
Carefree
Advanced Member
    
Philippines
4222 Posts |
Posted - 04 September 2012 : 05:25:32
|
You're welcome. |
 |
|
|
Topic  |
|