I've got an ASP.NET website that was running on IIS 6 and worked great. We allowed our customers to upload large files (50MB+) without any issues. We recently moved (my company) and our websites have been moved off-site as well (before they were on a server in our own building) and we had to switch from IIS 6 to IIS 7. Since making the move, our website won't allow our customers to transfer large files. I have tested smaller files (< 10MB) and they upload fine, but when I attempt anything over 10MB, I get the 404 Error:
404 - File or directory not found.
The resource you are looking for might have been removed, had its name changed, or is temporarily
unavailable.
We have the following in our web.config already:
<httpRuntime maxRequestLength="1321600" />
Is there a setting in IIS 7 that I am missing?