gpt4 book ai didi

.net - 帮助 ASP.NET 中的 Elmah 配置

转载 作者:行者123 更新时间:2023-12-04 17:29:14 25 4
gpt4 key购买 nike

我正在尝试设置 ELMAH为我们的应用程序记录错误。我已成功添加模块并且加载 ErrorLog 页面 (elmah.axd) 没有问题。但是,Elmah 没有记录我生成的任何测试异常。

我的 web.config 看起来像这样:

<configSections>
<!-- Other stuff -->
<sectionGroup name="elmah">
<section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah"/>
<section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah"/>
<section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah"/>
</sectionGroup>
</configSections>

<elmah>
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
</elmah>

<httpHandlers>
<!-- Other stuff -->
<add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah"/>
</httpHandlers>

<httpModules>
<!-- Other stuff -->
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah"/>
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah"/>
</httpModules>

点击测试异常页面 http://localhost/elmah.axd/test生成 yellow screen ,但没有日志条目。

在提供的示例和 DotNetSlackers 上的教程之间我看不出有什么不对。有什么我想念的吗?我还尝试通过 Signaling 生成错误,但这也不起作用。

我正在针对 DotNetNuke 运行它,这就是我目前认为问题所在的地方。

最佳答案

我认为您需要做的是禁用 DotNetNuke 中的自定义错误消息。
1.以主机身份登录dnn Portal
2. 导航到主机 > 主机设置。
2. 进入基本设置 - 外观部分。
3. 在使用自定义错误消息中,取消选中该复选框。
4. 单击更新。
这将禁用 DotNetNuke 的错误处理程序。

关于.net - 帮助 ASP.NET 中的 Elmah 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/667756/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com