Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
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:
Hilfe! :)
Thanks in advance for any input
Make sure to increase maxAllowedContentLength too.
<security> <requestFiltering> <requestLimits maxAllowedContentLength="524288000" /> </requestFiltering> </security>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
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:
And I've allowed both mp4 and webm mime-type in my web.config:
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:
Hilfe! :)
Thanks in advance for any input
Make sure to increase maxAllowedContentLength too.
is working on a reply...