IIS文件上传大小限制解决方法

痕风 2013年1月15日09:51:39
评论
132

IIS6.0文件上传大小限制解决方法

win2003的iis6限制了asp的上传文件大小为200k,aspx的上传程序没有影响

1、先勾选IIS设置中的选项: IIS服务器属性-->允许直接编辑配置数据库

IIS文件上传大小限制解决方法

 

2、在服务里关闭iis admin service服务.

IIS文件上传大小限制解决方法

IIS文件上传大小限制解决方法

 

3、找到windows\system32\inesrv\下的metabase.xml

IIS文件上传大小限制解决方法

打开,找到ASPMaxRequestEntityAllowed 把他修改为需要的值 ,默认为204800,即200K

然后重启iis admin service服务.

IIS7.5解决方法:

网上一般解决方案:
IIS修改方案:
1. 修改IIS的applicationhost.config
打开
%windir%\system32\inetsrv\config\applicationhost.config
找到:
<requestFiltering>节点,
这个节点默认没有 <requestLimits
maxAllowedContentLength="上传大小的值(单位:byte)" /> 元素,IIS 7和IIS
7.5上测试过  最大值只能是<requestLimits maxAllowedContentLength="4294967295"
/>  <4GB,
为这个节点新增如下事例元素:<requestLimits
maxAllowedContentLength="2147483647" /> ,上传的大小将改为2G
注意:
%windir%\system32\inetsrv\config\applicationhost.config
文件一定不要用其他机器的文件替换,否则IIS将无法启动
此文件记录了,当前IIS中所有Site , App
pool的信息,还有一些与机器相关的配置。

2.
修改web.config
<system.web>
<httpRuntime executionTimeout="36000"
maxRequestLength="2097151"/>
<!--maxRequestLength:上传的大小,单位K
,executionTimeout:设置超时时间,单位:秒。(默认是90秒)
-->
</system.web>
注意:这个maxRequestLength最大值只能是2097151K,设置大于这个值将会出现如下错误:
Configuration
Error
Description: An error occurred during the processing of a configuration
file required to service this request. Please review the specific error details
below and modify your configuration file appropriately.
Parser Error Message:
The value for the property 'maxRequestLength' is not valid. The error is: The
value must be inside the range 0-2097151.
Source Error:
<httpHandlers
/>
<customErrors mode="RemoteOnly" />
<httpRuntime
executionTimeout="36000" maxRequestLength="4194304" />
<authentication
mode="Windows" />
<identity impersonate="true"
/>

3.  web.config下如果有如下节点(此节点是为IIS 7设计的) ,则修改
<requestLimits
maxAllowedContentLength="2147483647"
/>
单位与applicationhost.config中的<requestLimits
maxAllowedContentLength="2147483647"
/>一致,它的最大值也只能为4294967295
<system.webServer>
<security>

<requestFiltering>
<requestLimits
maxAllowedContentLength="2147483647" />

</requestFiltering>
</security>
</system.webServer>

继续阅读
weinxin
痕风的起点
专注于互联网资讯、中央空调、Windows、wordpress、建站技术、软件应用等相关网络资源的分享。
匿名

发表评论

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: