IIS mysql数据库大文件导入出错解决方法
修改 php.ini配置文件
upload_max_filesize
memory_limit
post_max_size
修改这三个的值 post_max_size最好大于upload_max_filesize
1. 修改IIS的applicationhost.config
打到%windir%\system32\inetsrv\config\applicationhost.config ,然后单击 打开 。
在 该 ApplicationHost.config 文件中找不到maxAllowedContentLength 属性。 那么自己添加一个值,使客户端发送作为请求的一部分的内容长度标头的大小相同。 默认情况下, maxAllowedContentLength 属性的值是 30000000。帮助信息说到maxAllowedContentLength 的默认大不为30M。
这时明白 web.config文件中设定的是针对某个WEB站点.而非全部站点的上传大小。在当applicationhost.config 中未对maxAllowedContentLength 设定大小时默认就是30M,在web.config中设定超过于30M,依然上传最大为30M。然而在applicationhost.config未找 到节点,那么自己试着在system.webServer中添加此节点,一定要在system.webServer里设置。
<system.webServer>
<security>
<requestFiltering >
<!—在这个节点里面添加如下内容 ,更改IIS上传文件大小为1GB-->
<requestLimits maxAllowedContentLength="1073741824" ></requestLimits>
</requestFiltering>
</security>
</system.webServer>