Copied to clipboard

Flag this post as spam?

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


  • MARIAPPAN L A 1 post 71 karma points
    Sep 27, 2022 @ 07:57
    MARIAPPAN L A
    0

    Issue while uploading a Video file upload with 200mb size

    I am using Umbraco version 10.0.1

    And I am required to upload around 200mb video files into the media library. For that, I have made changes in Appsettings.json as

    "Umbraco": { "CMS": { "Runtime": { "MaxQueryStringLength": 90, "MaxRequestLength": 200000, "Mode": "BackofficeDevelopment" } } }

    But still, I am not able to save my video file (120mb). I am able to see a progress bar while trying to upload the file. But I am not able to see the file in the media library.

    Could you please help me how to do this?

    Thanks in advance.

  • Huw Reddick 1737 posts 6098 karma points MVP c-trib
    Sep 27, 2022 @ 11:00
    Huw Reddick
    0

    If you are hosting in IIS you may need to set the size in the sites web.confi file

    <configuration>
      <system.webServer>
        <security>
          <requestFiltering>
            <!-- This will handle requests up to 700MB -->
            <requestLimits maxAllowedContentLength="737280000" />
          </requestFiltering>
        </security>
      </system.webServer>
    </configuration>
    
Please Sign in or register to post replies

Write your reply to:

Draft