a have a 2003R2 server running IIS 6 with a DNN 5.1.4 install... I am having great difficulty uploading large files through HTTP with the DNN apps. All the forums and info point to settings in either web.config, or machine.config. I have set the web.config set to the following for the app in question.
<!-- allow large file uploads -->
<httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="102400" requestLengthDiskThreshold="102400" executionTimeout="100000" />
<httpCookies httpOnlyCookies="true" requireSSL="false" domain="" />
which should allow me to upload 100M files to the site.
When I start the upload it runs for approx. 300 seconds (5 min) give or take 20 seconds before it bombs and gives a 404 page cannot be found internet connection or dns blah blah blah...
I have tried increasing every connection timeout I can find in IIS... I have made sure that my apppool did not recycle, even made sure that it did not write the file to disk by increasing the requestLengthDiskThreshold to the max file size as well...
I'm struggling as to wheter this is a IIS problem, ASP.net problem or what...
Any help would be greatly appreciated! Many Thanks!