系统win2008,运行php环境 5.6,登录云起报错
根目录下放置web.config,
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”2147483647″ maxQueryString=”2147483647″/>
</requestFiltering>
</security>
</system.webServer>
</configuration>
保存后就正常
方案1: 在程序的web.config 中system.web 节点 里面插入 <httpRuntime maxRequestLength=”999999999″ maxQueryStringLength=”2097151″ /> 代码。
方案2:对IIS 中的applicationHost.config 配置文件进行配置。再次运行