Link to home
Start Free TrialLog in
Avatar of coerrace
coerrace

asked on

404 IIS 7 ASP.NET Big File Upload Problem

I have the script at the bottom to upload files. If I upload files les than 20 mb around no problem upload perfect but if I put a 179 mb file or higher the IIS7 give me this error:
(404) Not Found. I made a trace of the error and found tell this:

MODULE_SET_RESPONSE_ERROR_STATUS
ModuleName RequestFilteringModule
Notification 1
HttpStatus 404
HttpReason Not Found
HttpSubStatus 13
ErrorCode 0
ConfigExceptionInfo  
Notification BEGIN_REQUEST
ErrorCode The operation completed successfully. (0x0)

Could you tell me what can I do to solve the problem?
Thank you here is the code

        String savePath = @"C:\inetpub\wwwroot\esp\alianza\actividades\nutricionIII\videostemp0\";



        if (FileUpload0.HasFile)
        {

            string FileExtention = System.IO.Path.GetExtension(FileUpload0.FileName);
            if (FileExtention == ".flv")
            {
         
                String fileName = FileUpload0.FileName;


                savePath += fileName;



 
                FileUpload0.SaveAs(savePath);

                UploadVideo0StatusLabel.Text = "Todo se subió correctamente";

               
            }

            else
            {
                UploadVideo0StatusLabel.Text = "is not flv";

            }



        }

    }
Avatar of coerrace
coerrace

ASKER

HEre is my web.config. file I read somewhere to change  maxAllowedContentLength look:
<configuration>




      
      <system.web>
    <customErrors mode="Off"/>
            
            <authentication mode="Forms">
                  <forms name="TestAuthCookie" loginUrl="login.aspx" timeout="1000">
                        <credentials passwordFormat="Clear">
                              <user name="test" password="test"/>
                              <user name="test" password="test"/>
                        </credentials>
                  </forms>
            </authentication>
            <authorization>
                  <deny users="?"/>
            </authorization>
            <compilation targetFramework="4.0">
                  <assemblies>
                        <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies></compilation>
            <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
      </system.web>

    <system.webServer>
        <security>
            <requestFiltering>
                <!-- maxAllowedContentLength: bytes -->
                <requestLimits maxAllowedContentLength="3000000000"/>
            </requestFiltering>
        </security>
     
     </system.webServer>

</configuration>

But now give me this error with my web.config an I want 2 upload a file of 200 mb that´s it.

Maximum request length exceeded.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: Maximum request length exceeded.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:


[HttpException (0x80004005): Maximum request length exceeded.]
   System.Web.HttpRequest.GetEntireRawContent() +11314919
   System.Web.HttpRequest.GetMultipartContent() +221
   System.Web.HttpRequest.FillInFormCollection() +345
   System.Web.HttpRequest.get_Form() +137
   System.Web.HttpRequest.get_HasForm() +11317092
   System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull) +141
   System.Web.UI.Page.DeterminePostBackMode() +163
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +249
ASKER CERTIFIED SOLUTION
Avatar of Paul Jackson
Paul Jackson
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Works Thank you