设置文件上传的最大大小

Posted guohu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置文件上传的最大大小相关的知识,希望对你有一定的参考价值。

1>iis7及以上版本

需要在配置文件里面设置文件上传限定的两个属性值:maxAllowedContentLength,maxRequestLength 允许上传文件的长度,和请求的长度,两个大小需要设置一致,如果不一致,则以请求长度为准。

  <system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="2097151000" />
      </requestFiltering>
    </security>    
  </system.webServer>

  

<system.web>
<httpRuntime executionTimeout="36000" maxRequestLength="2097151000" useFullyQualifiedRedirectUrl="false"/>
</system.web>

2>iis6

 设置executionTimeout和maxRequestLength即可。

<system.web>
<httpRuntime executionTimeout="36000" maxRequestLength="2097151000" useFullyQualifiedRedirectUrl="false"/>
</system.web>

  

转载自:https://www.cnblogs.com/Joans/p/4315411.html

以上是关于设置文件上传的最大大小的主要内容,如果未能解决你的问题,请参考以下文章

GCS 签名 URL:我可以设置上传的最大文件大小吗? [复制]

Laravel 为特定路线设置最大上传大小限制?

Vue Apollo 上传文件崩溃节点最大调用堆栈大小超过 _openReadFs

如何调整待上传的文件大小

使用 PHP 的大文件上传错误

Laravel - 超过 PHP 最大上传大小限制时验证文件大小