The 413 or 'Request entity too large' status code means the server is refusing to process a request because the request entity is larger than the server is willing or able to process.
Questions tagged [http-status-code-413]
142 questions
1
vote
2 answers
Why does happen "request entity too large" error?
"nginx 413 request entity too large"
I didn`t solve this problem.
Please let me know this problem if you know this.
Thank you :)

Dev_ChangGeun
- 13
- 4
1
vote
1 answer
413 request entity too large jetty server
I am trying to make a POST request to an endpoint served using jetty server. The request errors out saying 413 Request entity too large. But the content-length is only 70KB which I see is way below the default limit of 200KB.
I have tried serving…

Mani
- 1,364
- 14
- 33
1
vote
0 answers
Is it allowed to return 413 Payload Too Large if decompressed payload is too large?
In a web application, I would like to return a status code to indicate if the sent body is too large. Specifically I want to do this in the code that protects against gzip bombs.
With gzip bombs it's common to abort extracting of the incoming gzip…

Thomas Watson
- 6,507
- 5
- 33
- 43
1
vote
1 answer
WCF Service 413 no matter which config item I change
I have been trying to figure this out for days, to no avail. This happens both when I try to debug in Visual Studio using IIS Express and with my production web site deployed to a machine running IIS 7.5.
I have called the service from a Visual…

Lenny Smith
- 13
- 3
1
vote
1 answer
Error 413 with POSTing large string
I'm trying to upload images using the FileReader API, and writing the data URL from the FileReader.readAsDataURL() method to a file using PHP on the server side.
The method works with smaller images (not sure exactly how small, but < 1MB is…

yaakov
- 4,568
- 4
- 27
- 51
1
vote
1 answer
413 Request Entity Too Large For HttpClient
Once i send the HttpClient request through the PostAsJsonAsync i get the response as Request Entity too large. but i can directly call to webapi and send the request and returns a successfull response. but through the PostAsJsonAsync it returns the…

Fiham Zuher
- 33
- 2
- 13
1
vote
0 answers
SSRS gives error 413 in Chrome
I have a report in SQL Server Reporting Services in integrated mode (baked in to SharePoint) which has a multi choice dropdown that can have more than 1000 values. The report works as expected in IE 11 but in Chrome (latest version at this point) I…

Martin Larsson
- 720
- 2
- 10
- 21
1
vote
2 answers
NodeJS Http status code 413: Increasing body parser limit
I am sending an image file from an android client along with some other data. The image is sent as a Base64 string. I am trying to store the image in the server but it returns a 413 http status code.
Some solutions suggested increasing the…

ashwin mahajan
- 1,654
- 5
- 27
- 50
1
vote
1 answer
413 Request Entity Too Large, using CodeIgniter: phpinfo() indicates proper max size
When using the upload functionality in CodeIgniter, if I try to upload a pdf file that is larger than 20M, I either get a "404 file not found" or a 413 Request Entity Too Large. I can see that it is "Uploading nn%", up to about 97% or 98% and then…

S. Lynch
- 31
- 1
- 7
1
vote
3 answers
HTTP 413 error posting to SharePoint web service
I know the "HTTP 413 Request Entity too large" error is a FAQ. But I have a variation that I've been unable to figure out for two days now. I've created a WCF service endpoint as part of an on-prem SharePoint 2013 application (see below). The web…

SylverSmyth
- 41
- 6
1
vote
1 answer
Web Service error : HTTP 413: Request Entity Too Large
My system:
IIS 7.5
Visual Studio 2010
Framework 4
I have make a Web Service that receive a file(byte array).
I have make a console app that consume it(Add Service Reference-->Advance-->Add Web Reference). With http it is working perfectly. But I…

Za7pi
- 1,338
- 7
- 22
- 33
1
vote
1 answer
Apache with mod_ssl and mod_proxy returns 413 Request Entity Too Large
I have a apache which uses SSL and ProxyReverse which transfers the incomming request to a simple rest webservice running on a tomcat. The problem I am now facing is that my apache returns an HTTP 413 Request Entity Too Large if send an POST Request…

Chris S.
- 323
- 1
- 4
- 13
1
vote
0 answers
load resource: the server responded with a status of 413 (Request Entity Too Large)
I have a serious problem. When i upload an image file from form via php post method after 15 seconds i have the following response load resource: the server responded with a status of 413 (Request Entity Too Large)
The fact here is that my image…

Vasileios Tsakalis
- 1,101
- 2
- 11
- 25
1
vote
1 answer
nginx client_max_body_size has no effect?
I know this has been asked several times before but I just can't make it work in my config. I'm getting 413 error when trying to upload files larger than the default nginx value of client_max_body_size with is 1 MB.
This are my…

AArias
- 2,558
- 3
- 26
- 36
1
vote
1 answer
Web API returns status 413
I am consuming a ASP.Net WEB API written in c# hosted in IIS6. When making a POST to the API it returns HTTP status 413. The API (not WCF) returns response as long as the content in the body is around 32+KB. If the size is like 40 KB then it errors…

sendhil kumar Gurunathan
- 147
- 2
- 12