View Issue Details

IDProjectCategoryView StatusLast Update
0000033Windows and other desktop OSIIS7 web serverpublic2012-10-21 14:18
ReporterDigitalMy 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
PlatformIBMPCOSWindowsOS Version2008R2
Summary0000033: HTTP error 404.13 – CONTENT_LENGTH_TOO_LARGE
Descriptionon big file upload web server stops processing the page (404),
in the IIS7.5 site log one could see:
date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken
2012-10-21 08:08:42 1.1.1.11 POST /mStorage.php - 80 - 1.1.1.10 Mozilla/5.0+(Windows+NT+6.1;+WOW64;+rv:16.0)+Gecko/20100101+Firefox/16.0 404 13 0 1367 4224 5
TagsNo tags attached.
FinishDate2012-10-21
StartDate2012-10-21
WasteTime3
PriorityIndex7
LaboriousnessIndex1

Activities

DigitalMy

2012-10-21 12:32

administrator   ~0000016

Last edited: 2012-10-21 13:20

View 3 revisions

Set proper "maxAllowedContentLength" parameter value in <requestLimits> tag of "ApplicationHost.config" xml file (\%windir%\system32\inetsrv\config\).

Hierarchy is the following (1GB limit example):
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824">
<headerLimits>
</headerLimits>
</requestLimits>
</requestFiltering>
</security>
</system.webServer>
</configuration>