IIS7传大于30M的视频时出现找不到文件或目录错误正确处理方法
程序员文章站
2022-05-12 18:07:39
这个情况是出现在使用iis7的系统上的,因为iis7限制了上传文件大小,默认允许最大上传30m。解决办法:修改iis_schema.xml这个文件要先获得这个文件的控制权;...
这个情况是出现在使用iis7的系统上的,因为iis7限制了上传文件大小,默认允许最大上传30m。
解决办法:
修改iis_schema.xml这个文件要先获得这个文件的控制权;
进入目录c:\windows\system32\inetsrv\config\schema,修改文件iis_schema.xml 权限:
进入iis_schema.xml文件权限修改,选择”高级”
选择”所有者”
选中 administrators 确定
再进入权限编辑,修改administrators 完全控制.
再去掉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行左右.