The configuration section #39;uri#39; cannot be read because it is missing a section declaration(无法读取配置部分“uri,因为它缺少部分声明)
问题描述
我尝试使用 .net 4.5 在 IIS7 上安装 BugNET
I tried to install BugNET on IIS7 with .net 4.5
一直显示
无法读取配置部分uri",因为它缺少部分声明
The configuration section 'uri' cannot be read because it is missing a section declaration
很像这个问题和这个 但是我的应用程序池设置为 4.0.
It is pretty much like this issue and this one But my app pool was set to 4.0.
它在带有 .net 4.5 的 IIS8 上运行良好
And it works fine on IIS8 with .net 4.5
我认为设置是相同的.
有什么帮助吗?谢谢
推荐答案
事实证明它确实意味着它缺少一个部分声明.
It turns out it does mean it is missing a section declaration.
我只是添加
<section name="uri" type="System.Configuration.UriSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<configSections>
然后它就可以正常工作了.
Then it works fine.
这篇关于无法读取配置部分“uri",因为它缺少部分声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法读取配置部分“uri",因为它缺少部分声明
基础教程推荐
- rabbitmq 的 REST API 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01