2013年3月19日 星期二

解決 IIS6 上傳檔案大小200kb的限制

引用來源
--
這邊有一種解決方式

http://www.hkcode.com/programming/539

IIS 預設上傳限制為 200kb,要修改這個限制,方法如下:

1. 開啟 Internet Information Services Manager (IIS)。 (中文版好像叫 IIS 管理員)

2. 在 server 上面 right click 及選擇 Properties

3. 選取 "Enable Direct Metabase Edit" 並按 OK

4. 開啟 Notepad,開啟以下檔案

%Windows dir%\System 32\Inetsrv\MetaBase.xml

5. 找出字串 AspMaxRequestEntityAllowed,預設是 204800,即 200kb,例如想改為 5mb 的話,應改為:

預設為 AspMaxRequestEntityAllowed = "52428800"

6. 完成後儲存 MetaBase.xml 便完成,不須要重新啟動 IIS。

7. 回到 Internet Information Services Manager (IIS),移除 "Enable Direct Metabase Edit" 的選項。



我比較喜歡這樣子的解決方式

cscript c:\Inetpub\AdminScripts\adsutil.vbs SET W3SVC//AspMaxRequestEntityAllowed 52428800

沒有留言:

張貼留言