本文以win2012下的IIS8.0为例。
鼠标移至桌面最最左下角,d出开始菜单,点击左键。
点击iis管理器,并选中您的网站。
点击“管理”下的“配置编辑器”。
设置上传超时时间限制。
点击下拉菜单节(S),选中system.web>httpRuntime
将executionTimeout的值设为00:30:00(即30分钟)
设置上传文件大小限制。
点击下拉菜单节(S),选中system.webServer>security>requestFiltering
展开requestlimits,将maxAllowedContentLength的值设为102400000(即100m)
注:这样修改直接就能生效,无需重启iis或者服务器。
也可以直接在网站根目录建一个web.config文件,用此方法可以直接省略前5步,web.config内容具体如下
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="102400000" />
</requestFiltering>
</security>
</system.webServer>
<system.web>
<httpRuntime executionTimeout="1800" />
</system.web>
</configuration>
在IIS 6.0中设置文件上传大小的方法,就是配置如下节点:复制代码 代码如下:
<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="600"/>
</system.web>
但在IIS7中,设置如上设置后,不管设置多大数值,最大上传了限制为30M
还要进行如下设置才能正确:
方法1:
appcmd set config "My Site/MyApp" -section:requestFiltering -requestLimits.maxAllowedContentLength:104857600 -commitpath:apphost
在IIS服务器的命令行执行如上命令,注意修改上面的网站名称和上传文件大小
方法2:
在web.config中加入如下配置:
复制代码 代码如下:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576000"></requestLimits>
</requestFiltering>
</security>
</system.webServer>
IIS6 默认允许的附件最大上传大小为4M,在IIS7之前,当我们需要扩大这个上传限制时,比如需要将允许上传的附件上限设置为50M,则可以在web.config中做如下配置:代码如下:
<system.web>
<httpRuntime requestValidationMode="2.0" maxRequestLength="51200" executionTimeout="60" appRequestQueueLimit="100" />
</system.web>
在使用IIS7后,除了进行以上配置外,还需要注意到
选中一个虚拟目录,选择功能视图----双击请求筛选---右键选择编辑功能测试,里面有一项是允许的最大内容长度,默认是30M
也就是说,在使用IIS7后,如果你想上传50M的附件,你得修改以上两个地方才行
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)