我们在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的哪些部分正在生成这些部分并且没有任何其他信息,因为我无法重现错误并且只有屏幕截图中的详细信息。
有谁知道可能会产生此错误的内容,或者我如何能够找到有关它的更多信息?
答案 0 :(得分: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>