WhatsUp - Error: The script timed out because it exceeded 1800000 seconds

来源:互联网 发布:安装ubuntu一直黑屏 编辑:程序博客网 时间:2024/05/18 03:40

 

以下是ipswitch 官方提供的解决方法

到ipswitch 的安装目录中的 HTML/1033/NmConsole/StandardIncludes 文件夹中,编辑 ApplicationContext.inc中的内容,

 

把以下的的代码做一下更改

原内容

 

            Session("nScriptTimeout") = nScriptTimeout;

            Server.ScriptTimeout = nScriptTimeout;

 

 更改后的内容

 

            Session("nScriptTimeout") = (nScriptTimeout / 1000);

            Server.ScriptTimeout = (nScriptTimeout / 1000);

更改完成并保存,然后 重新启动  ipswitch 的服务 "Ipswitch WhatsUp Engine",就OK了。

 

以下内容来源于官方网页  http://support.ipswitch.com/kb/WP-20060323-CL01.htm

 

 

WhatsUp Professional - Error: The script timed out because it exceeded 1800000 seconds

Product:Version:Platform:WhatsUp Professional,
WhatsUp Professional Premium2006Windows 2000 SP4,
Windows XP SP1 or later,
Windows 2003

Question/Problem: I'm trying to view one of the WhatsUp Professional reports, and I'm receiving the following error instead of seeing the report:

The script timed out because it exceeded 1800000 seconds

Answer/Solution:

This is a known defect in the WhatsUp Professional 2006 software.

You can correct the problem by editing the following lines in "<install

dir>/HTML/1033/NmConsole/StandardIncludes/ApplicationContext.inc".

Change lines 228 and 229 from:

            Session("nScriptTimeout") = nScriptTimeout;

            Server.ScriptTimeout = nScriptTimeout;

To:

            Session("nScriptTimeout") = (nScriptTimeout / 1000);

            Server.ScriptTimeout = (nScriptTimeout / 1000);

Restart the "Ipswitch WhatsUp Engine" service.

Note: This defect has been fixed in WhatsUp Gold v11.

Document #: Revision Date:WP-20060323-CL01 02/14/07

原创粉丝点击