评论

收藏

[IIS] win2008 iis7 上传大文件限制的真正解决办法

web服务器 web服务器 发布于:2021-11-03 14:57 | 阅读数:514 | 评论:0

iis7 上传大文件限制的真正解决办法
修改IIS_schema.xml这个文件要先获得这个文件的控制权;
进入目录C:\Windows\System32\inetsrv\config\schema,修改文件IIS_schema.xml 权限:
DSC0000.jpg

进入IIS_schema.xml文件权限修改,选择”高级”
DSC0001.jpg

选择”所有者”
DSC0002.jpg

选中 administrators 确定
DSC0003.jpg

再进入权限编辑,修改administrators 完全控制.
DSC0004.jpg

再去掉IIS_schema.xml的只读属性.
修改文件配置:
然后搜索 3000000 意思是 只允许上传 30MB 大小的文件,你在这后面多加一个0 就变成了 300MB 了就应该够用了。然后重启 IIS 7
<element name="requestLimits"> 
<attribute name="maxAllowedContentLength" type="uint" defaultValue="30000000" /> 
<attribute name="maxUrl" type="uint" defaultValue="4096" /> 
<attribute name="maxQueryString" type="uint" defaultValue="2048" /> 
<element name="headerLimits"> 
<collection addElement="add" clearElement="clear" removeElement="remove" > 
<attribute name="header" type="string" required="true" isUniqueKey="true" validationType="nonEmptyString" /> 
<attribute name="sizeLimit" type="uint" required="true" /> 
</collection> 
</element>
大约在1024行左右.

关注下面的标签,发现更多相似文章