Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
Gerard  
#1 Posted : Wednesday, November 25, 2009 5:18:02 PM(UTC)
Gerard

Rank: Member

Groups: Member
Joined: 2/12/2006(UTC)
Posts: 9

Hello,

This is a small post to help people out that have issues with uploading large files using the Aurigma Image Uploader in a ASP.NET + IIS 7 environment.

We have recently migrated our application to a new Windows 2008 server and ran into problems when uploading large files (over 30Mb) using the Aurigma Image Uploader. After uploading the large file the Image Uploader would return an error message like this "The server or proxy "some file name.aspx" not found". Since we did not have this problem before I figured it had something to do with IIS 7.

So I started Googling and found this article from Microsoft: http://support.microsoft.com/kb/944981.

Turns out that in IIS 7 the maximum content length is capped on 30Mb. You can override this setting by adding the following lines to your web.config file:

Code:
<system.webserver>
    <security>
        <requestFiltering>
            <!-- Set  the maximum allowed content length to 2Gb //-->
            <requestLimits maxAllowedContentLength="2147483648"/>
        </requestFiltering>
    </security>
</system.webServer>

Hopefully this will help other users experiencing similar problems.

Cheers,

Maurits

Dmitry  
#2 Posted : Thursday, November 26, 2009 2:24:55 AM(UTC)
Dmitry

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 8/3/2003(UTC)
Posts: 1,070

Thanks: 1 times
Was thanked: 12 time(s) in 12 post(s)
Hello Maurits,

I would like to add that sometimes you need to allow changing requestLimits parameter in machine.config. Here is what we have in our FAQ regarding this problem.

Thank you very much for your post. We really appreciate when our customers share the ideas how they use our software and what problems they face and solve and how they do it.

Edited by user Thursday, November 26, 2009 2:25:48 AM(UTC)  | Reason: Not specified

Sincerely yours,

Dmitry Sevostyanov

UserPostedImage Follow Aurigma on Twitter!

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.