Upload large (100mb) video within visual studio (IIS Express)
m
Any idea how I can upload a large video in the media manager through the built-in visual studio IIS Express runtime? I have added data in my appsettings.json according to the document, but no success 😦 "Runtime": { "MaxQueryStringLength": 9000, "MaxRequestLength": 200000000 },
h
you probably need to add this into the web.config file (create one if it doesn't exist.
Copy code
<system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="524288000"/>
            </requestFiltering>
        </security>
</system.webServer>
m
you're a genius
2 Views