找不到“城堡”部分在与该域关联的配置文件中
当我将 Cuyahoga CMS 发布到本地主机时,出现此错误。
我能做些什么?我对“城堡”或“castle.windsor”一无所知。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我将 Cuyahoga CMS 发布到本地主机时,出现此错误。
我能做些什么?我对“城堡”或“castle.windsor”一无所知。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
将您的
web.config
与 Cuyahoga CMS 附带的配置进行比较。您肯定缺少项目所依赖的 Castle Windsor IoC 的一些配置部分。喜欢:Compare your
web.config
with the one that comes with the Cuyahoga CMS. Your definitley missing some config sections for the Castle Windsor IoC the project depends on. Like:参考这个答案,需要添加:
如果只添加
...
然后错误解决了。Reference to This Answer, you need to add:
If only add
<section name="castle"...
, I still get error, I add<castle>...</castle>
then error solved.这是您的项目所依赖的程序集(它是一个 IoC 容器,但这无关紧要),并且正在查找
web.config
文件中缺少的配置部分。您需要正确配置它才能消除错误。
This is an assembly that your project depends on (it is an IoC container, but that's irrelevant) and which is looking for a configuration section in your
web.config
file that is missing.You need to configure it correctly for the error to go.