• web.config文件配置解决网站上传大文件限制


      Asp.Net网站对上传文件的大小,请求执行的时间都做了限制,上传的文件如果超过限制或者执行上传时间超出,

    文件上传都将失败.

      因此,需要配置web.config来增加最大文件上传的大小和执行超时时间.

      1.配置httpRuntime节点(默认maxRequestLength为4M,executeTimeout为90秒):

    <system.web>
        <httpRuntime targetFramework="4.5" maxRequestLength="1024000" executionTimeout="3600" />
    </system.web>

    配置后, maxRequestLength为1000M, executeTimeout为3600秒.

     2.配置requestLimits节点(默认maxAllowedContentLength为30M):

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

    配置后,maxAllowedContentLength为1000M.

    说明: 建议将maxRequestLength和maxAllowedContentLength配置为一致大小, 若不一致,文件上传的大小限制将取两者之间的较小者.

  • 相关阅读:
    mysqldump全量和增量备份脚本
    mysqldump根据通配符批量导出
    xtrabackup2.4_MySQL5.7备份与恢复
    ArrayInt
    Oracle wallet配置登陆凭证
    percona xtrabackup8.0.4备份恢复mysql8.0.12
    mysql修改密码
    range
    一周感悟
    Target
  • 原文地址:https://www.cnblogs.com/miaosha5s/p/6323031.html
Copyright © 2020-2023  润新知