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.
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>
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.
If you are hosting in IIS you may need to set the size in the sites web.confi file
is working on a reply...