IIS错误:访问路径“D:\temp\...\hash.web”被拒绝——
我的 ASP.net 3.5 站点托管在共享托管提供商上,开始显示“访问路径 'D:\temp\Temporary ASP.NET Files\root\385288b9\3cc848e\hash\hash.web' 被拒绝” (除了我的托管站点之外,我无法访问服务器上的文件)。
有什么想法吗????
My ASP.net 3.5 site, hosted on a shared hosting provider, started showing "Access to the path 'D:\temp\Temporary ASP.NET Files\root\385288b9\3cc848e\hash\hash.web' is denied"
(I have no access to the files on the server, other than my hosted site).
Any idea ????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 machine.config 或 web.config 文件中包含“tempDirectory”属性的元素中自行覆盖临时 asp.net 文件的路径。 您可以在 MSDN 中查看以下有关此内容的参考资料。
http://msdn.microsoft.com/en-us/library/s10awwz0。 aspx(丢失的 MSDN 参考),编辑该文件的具体说明在 此 ServerFault 答案。
另外,此处建议进行一些调试
This path to temporary asp.net files can be overriden by yourself in the machine.config or web.config file, in the element which contains the "tempDirectory" attribute. You can check the following reference in MSDN about this.
http://msdn.microsoft.com/en-us/library/s10awwz0.aspx (lost MSDN reference) and the specific instruction to edit the file is given in this ServerFault answer.
Also, some debugging is suggested here