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 need to upload a 90mb mp4 file to the media section.
I have changed this in web.config
<httpRuntime requestValidationMode="2.0" enableVersionHeader="false" targetFramework="4.7.2" maxRequestLength="104857600" executionTimeout="240" fcnMode="Single" />
but when trying to upload anything larger than around 50mb i get a red cross after uploading and no further explanation.
Are there more settings to be set or what am i missing?
Hi,
there is also another setting in the web.server section of the web.config that you might need to update
<system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="104857600" /> </requestFiltering> </security> </system.webServer>
this value is in bytes (maxRequestLength is in KB - so in your above line you've actually set the request limit to around 100gb).
so the snipit above sets the second limit t 100mb.
Perfect, thanks
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Uploading large files in v8
I need to upload a 90mb mp4 file to the media section.
I have changed this in web.config
but when trying to upload anything larger than around 50mb i get a red cross after uploading and no further explanation.
Are there more settings to be set or what am i missing?
Hi,
there is also another setting in the web.server section of the web.config that you might need to update
this value is in bytes (maxRequestLength is in KB - so in your above line you've actually set the request limit to around 100gb).
so the snipit above sets the second limit t 100mb.
Perfect, thanks
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.