在webuploader上傳大文件時必須配置一下,不然請求后臺處理程序時,會請求超時。出現404!
1
2
3
4
5
6
7
8
9
10
11
12
13
|
< system.web > < httpRuntime maxRequestLength = "2040000" useFullyQualifiedRedirectUrl = "true" executionTimeout = "6000" minFreeThreads = "8" minLocalRequestFreeThreads = "4" appRequestQueueLimit = "100" enableVersionHeader = "true" /> </ system.web > < system.webServer > < security > < requestFiltering > < requestLimits maxAllowedContentLength = "3000000000" /> </ requestFiltering > </ security > < staticContent > < mimeMap fileExtension = ".mp4" mimeType = "video/mp4" /> </ staticContent > </ system.webServer > |
以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持服務器之家!
原文鏈接:http://www.cnblogs.com/ws-yizhiduxiu/p/6322552.html