dot net nuke uploading files -


i"m working on dot net nuke site client, wanting upload files of 60mbs. have changed web.config file allow files 65 mbs in size wiggle room.

httpruntime usefullyqualifiedredirecturl="true" maxrequestlength="66560" requestlengthdiskthreshold="66560" executiontimeout="1080000" />

this code in web.config file. have tried mp3 files ranging 40 mbs - 60 mbs in size no luck. module upload files of 28mbs or less. using live content module if helps.

the connection getting reset. not getting 18 minute timeout have given it, if set 3 minute timeout same error. when uploading file 86% restart when gets 86% again when gets error.

<system.webserver> <security>   <requestfiltering>     <requestlimits maxallowedcontentlength="2000000000" />   </requestfiltering> </security> 

actually fixed it, dot net nuke set upload files 8mbs, iis set allow files 30mbs. adding code web.config file allow files larger 200mbs uploaded. using code provided in question modify dnn's upload modify iis.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -