Windows 2003, when downloading (/ upload) big file on IIS6,
An error will occur (Log file): 80004005 response_buffer_limit_exceeded.
Cause: IIS6 has a default setting: aspBufferingLimit = 4194304 is 4m.
Workaround: Increase the value of AspBufferingLimit to the appropriate size.
step:
1. Modify IIS settings, allow direct editing of configuration database
Administrative Tools -> IIS Manager, select your computer, right, select Properties, and select "Enable Direct Metabase Edit".
2. Modify IIS configuration file
1). First closes the IIS Admin Service service in the service manager
Administrative Tools -> Services -> IIS Admin Service-> Stop.
2). Use the text editor to open the Metabase.xml file under the C: / Windows / System32 / Inesrv /
Note: Please back up before modifying the file.
3). Modify the size limit on download file
Find aspbufferingLimit, modify it to your desired size.
For example: aspbufferinglimit = "8388608" (8M)
Modify the size limit on upload file size
Find aspmaxrequestentityAllowed to modify him to the required value, default is 204800, which is 200K to modify it to your desired size. Such as: 8388608 (8M)
For example: askREQUESTQUEMAX = "8388608"
4). Then open the WWW service
Management Tools -> Services -> World Wide Web Publishing Service-> Open
Remarks:
You can also change this value directly on the console command line. Do not stop IIS.
For example, it is changed to 8M: Run "Adsutil.vbs Set W3SVC / aspBufferingLimit 8388608"
Alternatively, IIS can be stopped and started directly on the console command line.
Stop: "Net Stop Iisadmin / Y"
Start: "Net Start W3SVC"
You can also edit Metabase Explorer (MbExplorer.exe) in IIS6 Resource Kit (instead MetaEdit 2.2).
IIS6 Resource Kit download address:
http://support.microsoft.com/kb/840671
http://www.microsoft.com/downloads/details.aspx?familyid=56fc92ee-a71a-4c73-b628-ade629c89499&displaylang=en
Description of IIS6 command line tools:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/iissdk/html/5e7f8cde-4a01-42bd-acaf-f8f7d091ef7c.asp