Copied to clipboard

Flag this post as spam?

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


  • Mads 9 posts 29 karma points
    Oct 15, 2015 @ 12:38
    Mads
    0

    Video upload issue in Umbraco 7.2.8 - 404 Not found

    I have problems with uploading video-files with a size around 40-50 mb.

    I've set the httpRuntimevariables like so:

    <httpRuntime requestValidationMode="4.0" enableVersionHeader="false" targetFramework="4.5" maxRequestLength="2097151" />
    

    And I've allowed both mp4 and webm mime-type in my web.config:

    <remove fileExtension=".mp4" />
    <mimeMap fileExtension=".mp4" mimeType="video/mp4" />
    <remove fileExtension=".webm" />
    <mimeMap fileExtension=".webm" mimeType="video/webm" />
    

    But I keep getting this error, and I really can't wrap my head around what the issue seems to be. Any help would be appreciated - I've tried to Google my way to solving the issue, but nothing seems to work.

    This is the error I keep getting: enter image description here

    Hilfe! :)

    Thanks in advance for any input

  • Ryan Davis 4 posts 96 karma points
    Oct 04, 2018 @ 09:44
    Ryan Davis
    0

    Make sure to increase maxAllowedContentLength too.

    <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="524288000" />
            </requestFiltering>
        </security>
    
Please Sign in or register to post replies

Write your reply to:

Draft