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",因为它缺少部分声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!