Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Darryl Godden 145 posts 197 karma points
    May 24, 2011 @ 14:21
    Darryl Godden
    0

    Media file upload problem

    Hi all,

    I'm having a problem with media file uploading. I have set:

    <httpRuntime maxRequestLength="2097151" executionTimeout="360"/>

    In the web.config. However when uploading a video 22mb in size, the video uploads without error. When I try to upload a video 33mb in size, I can see the percent climbing up at the bottom of Chrome, it get to 100% (I believe) then I get the following error:

    The system cannot find the file specified.

    Any ideas?

  • Michael Latouche 504 posts 819 karma points MVP 3x c-trib
    May 24, 2011 @ 15:11
    Michael Latouche
    0

    Hi Darryl,

    Could it be that you reach the timeout, or that you do not have enough space on the server to save the file?

    Cheers,

    Michael.

  • Darryl Godden 145 posts 197 karma points
    May 24, 2011 @ 15:24
    Darryl Godden
    0

    We do only have 1.5gb left on the server, but that is way more than the file that I am trying to upload. We're not reaching 6 minutes either.

  • Sean Holmesby 61 posts 82 karma points
    May 26, 2011 @ 02:31
    Sean Holmesby
    0

    Sounds like a similar issue I had with another CMS.

    I think it's an issue with IIS7, try looking at this:-

    http://www.cyprich.com/2008/06/19/fixing-file-upload-size-limit-in-iis-7/

    It says to add the following to the <system.webServer> node in your web.config file.

    <security>
     <requestFiltering>
      <requestLimits maxAllowedContentLength=”2000000000″ />
     </requestFiltering>
    </security>

Please Sign in or register to post replies

Write your reply to:

Draft