System.Web.HttpException (0x80004005) on large file uploads

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
7/13/2012 5:11:21 PM
Gravatar
Total Posts 167

System.Web.HttpException (0x80004005) on large file uploads

I have a site that allows large file uploads. I have set msconfig this so that it can manage 2.5GB file uploads. However the client has started complaining that not all files are being uploaded. so I have had a look a the system log and have found the following error System.Web.HttpException (0x80004005): 

This looks like the client side has timed out ,however is this something we can manage from the site/config so it does not timeout.

Cheers

7/14/2012 1:45:31 AM
Gravatar
Total Posts 18

Re: System.Web.HttpException (0x80004005) on large file uploads

you could try increasing the execution timeout by putting <httpRuntime executionTimeout="300" /> in your web.config

I assume you are using neatupload to do the uploading and not trying to do it with a standard upload component

7/14/2012 4:33:51 AM
Gravatar
Total Posts 167

Re: System.Web.HttpException (0x80004005) on large file uploads

es I am using neatupload however if I enter executiontimeout into

<httpRuntime requestValidationMode="2.0" maxUrlLength="560" maxQueryStringLength="2048"  /> 

The files do not upload at all, the bar appears but no progress.

The other relavent config setting  I have et i is

<neatUpload useHttpModule="true" maxNormalRequestLength="25600" maxRequestLength="2097151" multiRequestUploadHandlerUrl="~/NeatUpload/MultiRequestUploadHandler.ashx" maxUploadRate="300" xmlns="http://www.brettle.com/neatupload/config/2008">
</neatUpload>

Any other suggestions or how I can use executionTimeout=

7/14/2012 5:00:58 AM
Gravatar
Total Posts 18

Re: System.Web.HttpException (0x80004005) on large file uploads

try going through this see if anything  helps http://www.mojoportal.com/supporting-large-file-uploads.aspx

You must sign in to post in the forums. This thread is closed to new posts.