1. 关闭系统管理工具 >>服务 >>IIS Admin Service 服务
2. 打开 C: \windows\system32\inesrv\metabase.xml
3. 修改 AspMaxRequestEntityAllowed="204800"的值为自己需要的, 默认为 204800,即为200K
4. 启动 IIS Admin Service
二、win2008解决方法
默认情况下,IIS7的上传限制为200K。当上传文件小于30M时,可以通过如下方法设置:
打开IIS管理器双击 -“IIS”中的“ASP”-打开“配置”-展开“限制属性”;修改“最大请求主体限制”,修改值为你像要的,默认值为200000(即不到200K)。
当文件大于30M是,继续如下修改:
1、停止IIS7
2、找到“C:\Windows\System32\inetsrv\config\schema\IIS_schema.xml”文件。
3、文件是只读的,要先去掉只读属性,修改后再重新修改为只读。
4. 查找 <attribute name="maxAllowedContentLength"type="uint" defaultValue="30000000" />
3000000默认为30MB(不完全等于) 。加一个0 就是 300MB 。根据需要自己进行修改(1M=1024kB)。
5. 重启iis
在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>
方法/步骤本文以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>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)