Ni IIS7及IIS7.5上传大文件设置
修改fig配置
2. 在 文件 菜单上单击 打开。 在 文件名 框中键入 %windir%\system32\inetsrv\fig, 然后单击 打开。
3. fig 文件中到该 <requestlimits> 节点。如果未发现此节点,请在requestFiltering节点下添加引节点,如:
<requestLimits maxAllowedContentLength="1073741824" />
<requestLimits maxAllowedContentLength="1073741824" />
4. 删 除 maxAllowedContentLength 属性。或添加一个值,它与客户端发送请求的一部分的内容长度标头的大小相匹配。默认状态下,maxAllowedContentLength 属性的值是 300
00000。
例如对于修改下面的代码
例如对于修改下面的代码
<requestLimits maxAllowedContentLength ="1073741824" />
5. 保 存 fig 文件。
可参考:support.microsoft/kb/942074/
修改l配置大文件发送
1. 修改l这个文件要先获得这个文件的控制权;
进入目录C:\Windows\System32\inetsrv\config\schema,修改文件l 权限
属性==》安全==》高级==》所有权==》明确管理员的所有权==》返回添加完全控制==》记得修改“只读属性”
属性==》安全==》高级==》所有权==》明确管理员的所有权==》返回添加完全控制==》记得修改“只读属性”
2. 修改文件配置:
然后搜索 maxAllowedContentLength此节点默认只允许上传 30MB 大小的文件,修改此节点值为:1073741824。如下所示:
</element>
<element name="requestLimits">
<attribute name="maxAllowedContentLength" type="uint" defaultValue="1073741824" />
<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>
<element name="requestLimits">
<attribute name="maxAllowedContentLength" type="uint" defaultValue="1073741824" />
<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>
3. 重启IIS
修改IIS配置
打开IIS管理器–双击“IIS”中的“ASP”– 打开“配置 ASP 应该程序的属性”–展开“限制属性”;修改“最大请求实体主体限制”的值,默认值为200000(即不到200KB);
把它修改为你想修改的大小,如:1073741824。
修改完成点击“应用”OK!
把它修改为你想修改的大小,如:1073741824。
修改完成点击“应用”OK!
发布评论