413 Request Entity Too Large - File Upload Issue

File upload limit in Nginx & (The server returned a 413 Content Too Large)

You also have to edit your php.ini which is currently loaded. You can find this from <?php phpinfo(); then edit the following.

memory_limit = 64M
upload_max_filesize = 100M
post_max_size = 100M

IIS Server : Received error code 413 when posting large data in the request

You can try below settings:

<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>


Related Topics



Leave a reply



Submit