Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Tamila  
#1 Posted : Monday, May 18, 2009 7:14:28 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Problem

I am using IIS 7 and i get the following error when i try to upload a large file:

Quote:
HTTP Error 404.13 - Not Found

Description: The request filtering module is configured to deny a request that exceeds the request content length.

Error Code: 0x00000000

Notification: BeginRequest

Module: RequestFilteringModule


Resolution

To resolve this issue you need to configure the settings of your server. Please do the following steps:
  1. Go to c:\windows\system32\inetsrv\config\applicationHost.config and
    change
    Code:
    <section name="requestFiltering" overrideModeDefault="Deny" />

    to
    Code:
    <section name="requestFiltering" overrideModeDefault="Allow" />
  2. Add to your application's web.config the following code:
    Code:
    <system.webServer>
    <security>
        <requestFiltering>
            <requestLimits maxAllowedContentLength ="2147482624" /><!--this value in bytes~2GB-->
    	</requestFiltering>
    </security>
    <system.webServer>
  3. Here in web.config find the <system.web> section and the httpRuntime key.
    Modify the maxRequestLength and executionTimeout attributes of this key.
    For example:
    Code:
    <system.web>
         <!-- Uploading file size and timeout restriction -->
         <httpRuntime executionTimeout="540000" maxRequestLength="2097151"/> <!-- ~2GB -->
    </system.web>
Note:
  • The maxRequestLength value should be specified in kilobytes. The default value is 4096 KB (the same as 4 MB).
  • The executionTimeout value should be specified in seconds.
See also:

Edited by moderator Thursday, June 20, 2013 8:02:22 PM(UTC)  | Reason: Not specified

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
vanessa valore  
#2 Posted : Monday, June 15, 2009 6:33:46 PM(UTC)
vanessa valore

Rank: Newbie

Groups: Member
Joined: 6/10/2009(UTC)
Posts: 1

Sir,
Still im having the same problem if i upload 2 or more big files
and also i have iis6

thanks
Tamila  
#3 Posted : Monday, June 15, 2009 9:03:35 PM(UTC)
Tamila

Rank: Advanced Member

Groups: Member
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hello,

If you have IIS 6 you need to implement suggestions from the third point of previous post.
Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.