希望增加可以對IIS上傳文件的200K進行后臺調(diào)節(jié)功能

lichangcheng 2021-8-5 1106

希望增加可以對IIS上傳文件的200K進行后臺調(diào)節(jié)功能

最新回復(fù) (2)
  • hws 2021-8-5
    引用 2

    您好,感覺您的反饋,我們將提交給開發(fā)部門的同事。

    事實上上傳功能不僅僅要依賴IIS,還要依賴于網(wǎng)站程序的腳本,比如是PHP的話還需要設(shè)置PHP.INI的上傳大小限制。

    IIS的話,暫時你可以通過以下辦法來解決,在網(wǎng)站根目錄下創(chuàng)建文件web.config,使用記事本打開復(fù)制粘貼以下內(nèi)容。

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
        <system.webServer>
            <security>
                <requestFiltering>
                    <requestLimits maxAllowedContentLength="102400000" /> 
                </requestFiltering>
            </security>
        </system.webServer>
        <system.web>
            <httpRuntime executionTimeout="1800" />
        </system.web>
    </configuration>

    maxAllowedContentLength:文件大?。ㄗ止?jié))

    executionTimeout:超時時間(秒)

    如果已經(jīng)網(wǎng)站根目錄下存在有web.config文件,則只需要在相應(yīng)節(jié)點處添加

    <requestFiltering>

                    <requestLimits maxAllowedContentLength="102400000" /> 

    </requestFiltering>


  • lichangcheng 2021-8-15
    引用 3
    謝謝!
返回
發(fā)新帖