Hi @MWBQ
The solution you tried was this document? Alright, changing uploadReadAheadSize does not work in all cases.
You can try the following steps:
- Go to IIS.
- Click on the server name
- In the features (icons), chose the configuration editor.
- Click on the dropdowns on the top with Settings
- Traverse the path system.webServer -> security -> requestFiltering -> maxAllowedContentLength and set it to 334217728. (Then hit enter and then apply on the top right).
Also you can try below settings:
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
Refer to: https://stackoverflow.com/a/73481150/20058276
Best Regard,
TengFei Xie
If the answer is the right solution, please click "Accept Answer" and kindly upvote. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.