Question:
I'm trying to upload really large files with Pure ASP Upload 3 to my new Windows 2008 server running IIS7. But the files don't get uploaded and the progressbar keeps showing zero progress.
Answer:
On Windows 2008 IIS7 there is a new limit setting that you should be aware of. For security reasons Microsoft has limited the default form submit limit to about 28MB (30000000 bytes)
The setting for this is called maxAllowedContentLength and it is in your web.config
So just add this in your web.config to increase to limits to for example 500MB ( 524288000 bytes)
<security>
<requestFiltering>
<requestLimits maxallowedcontentlength="524288000" />
</requestFiltering>
</security>
Note: the value is in bytes!
See for more info about maxAllowedContentLength
See also for more info
George Petrov is a renowned software writer and developer whose extensive skills brought numerous extensions, articles and knowledge to the DMXzone- the online community for professional Adobe Dreamweaver users. His expertise in countless languages and technologies gives inspiration and teach valuable lessons on his website – DMXzone.com, which is visited daily by more than 30.000 people and is most popular for its over high-quality Dreamweaver extensions and templates.







