ELMAH 正在寻找有关虚拟导演的二进制文件

发布于 2024-08-03 17:22:43 字数 206 浏览 4 评论 0原文

我的网络应用程序的根目录上方有一个虚拟目录,用于存储产品图像。

在我安装 ELMAH 进行日志记录后,我意识到图像停止工作。这是由于 ELMAH 在productimages/bin 文件夹下寻找其 dll。

在我创建了一个 bin 目录并放置了 dll 图像后,现在可以正常工作了,

但我不喜欢将其作为长期解决方案。知道为什么这样做以及如何解决吗?

I have a virtual directory just above the root of my web app that I use to store product images.

After I installed ELMAH for logging I realized images stopped working. This was due to ELMAH looking for its dll under productimages/bin folder.

After i created a bin dir and placed the dll images are now working

I don't like this as a long term solution though. Any idea why it is doing this and how to fix?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

为人所爱 2024-08-10 17:22:43

虚拟目录继承主应用程序的配置。要在虚拟目录中禁用 ELMAH,您需要向其中添加一个包含以下内容的 web.config 文件:(

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.webServer>
        <modules>
            <remove name="ErrorLog" />
            <remove name="ErrorMail" />
            <remove name="ErrorFilter" />
        </modules>
        <handlers>
            <remove name="Elmah" />
        </handlers>
    </system.webServer>
</configuration>

确保名称与主 web.config 文件中的模块/处理程序的名称相匹配)

The virtual directory inherits the configuration of your main application. To disable ELMAH in your virtual directory you need to add a web.config file to it with the following content:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.webServer>
        <modules>
            <remove name="ErrorLog" />
            <remove name="ErrorMail" />
            <remove name="ErrorFilter" />
        </modules>
        <handlers>
            <remove name="Elmah" />
        </handlers>
    </system.webServer>
</configuration>

(make sure the names match those of your modules/handlers in the main web.config file)

美人骨 2024-08-10 17:22:43

您可以使用一些 URL 重写来将 Productimages\bin 定向到解决方案中的 \bin 处,不是吗?

善良,

You could use some URL re-writing to direct productimages\bin at \bin in your solution could you not?

Kindness,

Dan

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文