0

我们在 ColdFusion 9 上运行了一个长时间运行的 ColdFusion 脚本,该脚本出错并显示以下消息:

This page cannot be displayed 

Internal system error while processing the request for this page (http:///www.example.com).

Please retry this request.

If this condition persists please contact your corporate network administrator and provide the code shown below.

Notification codes

(1, INTERNAL_ERROR, http:///www.example.com)

我无法确定 ColdFusion 的哪个部分正在生成这些信息,也没有任何其他信息,因为我无法重现该错误并且只有屏幕截图中的详细信息。

有谁知道可能会产生此错误的原因或我如何找到有关它的更多信息?

4

1 回答 1

0

使用 try/catch 块来包装您的代码并让它向您发送一封包含所有错误详细信息的电子邮件(或者您可以将这些记录到您的数据库或将它们写入日志等)。

<cftry>

    <!--- your code goes here --->

    <!--- catch and email any exceptions --->       
    <cfcatch type="any">

        <cfmail to="your-email" from="your-email" subject="something" type="html">

            <h3>An Error Occurred on #cfi.script_name#</h3>

            <h3><strong>DATE:</strong> #dateFormat(now(), "mm/dd/yyyy") & " " & timeFormat(now(), "hh:mm:ss")#</h3>

            <br />
            <br />
            <cfif isDefined("cfcatch")>
                <h5>catch object:</h5>
                <cfdump var="#cfcatch#">
                <br />
                <br />
            </cfif>
            <cfif isDefined("ERROR")>
                <h5>Error object:</h5>
                <cfdump var="#ERROR#">
                <br />
                <br />
            </cfif>
            <cfif isDefined("cgi")>
                <h5>cgi object:</h5>
                <cfdump var="#cgi#">
                <br />
                <br />
            </cfif>
            <cfif isDefined("variables")>
                <h5>variables object:</h5>
                <cfdump var="#variables#">
                <br />
                <br />
            </cfif>
            <cfif isDefined("form")>
                <h5>form object:</h5>
                <cfdump var="#form#">
                <br />
                <br />
            </cfif>
            <cfif getapplicationMetadata().sessionmanagement and isDefined("session")>
                <h5>session object:</h5>
                <cfdump var="#session#">
                <br />
                <br />
            </cfif>
            <cfif isDefined("local")>
                <h5>local object:</h5>
                <cfdump var="#local#">
                <br />
                <br />
            </cfif>

        </cfmail>

    </cfcatch>
</cftry>
于 2014-02-07T21:12:38.587 回答