zoukankan      html  css  js  c++  java
  • IIS7.5只能上传2M文件的解决办法

    <system.web>
      
    <httpRuntime executionTimeout="36000" maxRequestLength="2097151"/>
      
    <!--maxRequestLength:上传的大小,单位K   ,executionTimeout:设置超时时间,单位:秒。(默认是90秒) -->
    </system.web>
    <system.webServer>
      
    <security>
        
    <requestFiltering>
          
    <requestLimits maxAllowedContentLength="2147483647" />
        
    </requestFiltering>
      
    </security>
    </system.webServer>
  • 相关阅读:
    cogs 826. Feb11] GF打dota
    cogs 133. [USACO Mar08] 牛跑步 A*k短路算法
    luogu cogs 1437. [NOIP2013]转圈游戏
    RESTful
    中间件
    回顾基础知识,类,fbv,cbv
    Vue
    ES6的一些说明
    小试牛刀2
    小试牛刀
  • 原文地址:https://www.cnblogs.com/linyechengwei/p/2038997.html
Copyright © 2011-2022 走看看