2012-08-14 96 views
5

有誰知道如何刪除30MB上傳限制,專門用於IIS Express?刪除IIS上的30MB上傳限制

我試過編輯對ApplicationHost.config和

<security> 
     <requestFiltering> 
     <requestLimits maxAllowedContentLength="1050000"></requestLimits> 
     </requestFiltering> 
    </security> 

<location path="api/media/AsyncUpload"> 
    <system.web> 
     <httpRuntime maxRequestLength="1050000" /> 
<!-- The size specified is in kilobytes. The default is 4096 KB (4 MB). 1gb = 1048576 --> 
     </system.web> 
     </location> 

似乎是正確設置?

任何想法?

+1

maxAllowedContentLength在BYTES中設置。 maxRequestLength在KILOBYTES – 2012-08-15 18:03:35

回答

9

您應該更改服務器配置文件。您正在尋找的字段是

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

如果它不存在,添加它應該覆蓋默認值。

+1

哎呦是在KB中設置的,而不是B :) – 2012-08-14 22:18:09

+1

順便說一下,配置文件在這個地方:〜\ Documents \ IISExpress \ config – guogangj 2017-03-23 04:48:30