Ook Server.ScriptTimeout vermelden
svn path=/Website/trunk/; revision=27587
This commit is contained in:
@@ -384,7 +384,7 @@ checker("Session.Timeout",
|
||||
res = resultcodes.warning;
|
||||
return { result: res,
|
||||
message: "Session timeout is " + Session.Timeout + " minutes.",
|
||||
info: String(Session.Timeout) + " minutes."
|
||||
info: String(Session.Timeout) + " minutes"
|
||||
};
|
||||
}
|
||||
)
|
||||
@@ -420,6 +420,19 @@ checker("Session.LCID",
|
||||
}
|
||||
)
|
||||
|
||||
checker("Server.ScriptTimeout",
|
||||
function ()
|
||||
{
|
||||
var res = resultcodes.ok;
|
||||
if (Server.ScriptTimeout < 30) // Minder dan 30 seconde?
|
||||
res = resultcodes.warning;
|
||||
return { result: res,
|
||||
message: "Script timeout is " + Server.ScriptTimeout + " seconds.",
|
||||
info: String(Server.ScriptTimeout) + " seconds"
|
||||
};
|
||||
}
|
||||
)
|
||||
|
||||
checker("Max download (Response Buffering Limit)",
|
||||
function ()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user