Try our conversational search powered by Generative AI!

Uploading "big" files in FileManager

Vote:
 

Hello, a user is having problems uploading a file of 66mb.

She can upload other smaller files into the same directory.

I havent been able to reproduce this myself.

 

Has anyone experienced this problem before, could it be the result of a misconfiguration?

 

Thanks

//Martin

#40073
Jun 09, 2010 16:05
Vote:
 

Could be that the upload times out. Try to increase the execution time out in web.config.

#40105
Jun 09, 2010 16:43
Vote:
 

<httpRuntime maxRequestLength="1000000" /> in web.config system.web section

#40120
Jun 09, 2010 20:29
Vote:
 

Also have a look at this link and add <requestLimits> in web.config

The section would like below ( under <system.webServer> section )

      <security>
           <requestFiltering>
              <requestLimits maxAllowedContentLength="52428800">            
              </requestLimits>
         </requestFiltering>
      </security>

#40126
Jun 10, 2010 6:43
Vote:
 

Thanks for all your replies.

 

I have tried them all but it wont work for the user in IE7 or Firefox. When I'm using the same useraccount it works fine.

According to bandwidth tests, the users network is a lot faster than mine so I doubt that this is a timeout issue.

 

#40590
Jun 14, 2010 16:58
Vote:
 

Also bear in mind that ASP.net wont timeout when running in debug mode. So when you try to reproduce yourself ensure you are compiled to release you have debug=false. This post explains it well:

http://aspalliance.com/1341_The_Infamous_DebugTrue_Attribute_in_ASPNET.all

#40640
Jun 14, 2010 19:05
Vote:
 

Thanks but all my testing has been made on the same production server where the user has had the problems.

#40687
Jun 15, 2010 15:41
This thread is locked and should be used for reference only. Please use the Episerver CMS 7 and earlier versions forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.