Questions tagged [http-status-code-413]

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.

108 questions
26
votes
1 answer

413 Request Entity Too Large nginx django

I am making a practice web service (client's artbook display web site) The client can upload artbook images to the server. But I get the following error when the client uploads too many images 413 Request Entity Too Large I tried adding…
Jade Han
  • 873
  • 2
  • 14
  • 29
10
votes
2 answers

413 - Request Entity Too Large IIS and SSL

I get this error, the moment when I try to send a very large POST call to an Asp.net Web API over SSL. I am aware of the fenomenon of renegotiation. My uploadReadAheadSize is set to the max. (2147483647) Can anybody tell me some options I should…
HansElsen
  • 1,209
  • 4
  • 19
  • 42
9
votes
3 answers

413 Payload Too Large on Django server

My team has been getting 413 errors whenever we try and upload large files to our Django back-end: 413 Payload too large We can't exactly pin down the maximum acceptable file size - it seems to vacillate in the 1-3MB range. Things we have…
NattyP
  • 105
  • 1
  • 5
7
votes
3 answers

(413) Request Entity Too Large

I have WCF service, and I have a method when I want to pass parameter as big string (over 1mb) I run this wcf and in WCF Test Client I changed configuration as is shown below:
Robert
  • 2,189
  • 7
  • 47
  • 72
7
votes
1 answer

Flask file upload limit

I have a file upload handler for multiple file uploads, and have set the MAX_CONTENT_SIZE. The docs mention that Flask throws a 413 exception when the total file size exceeds the limit, so I've also written a 413 error handler with a custom 413…
rottentomato56
  • 951
  • 2
  • 12
  • 18
6
votes
0 answers

Handling 413 (Request Entity Too Large) error with try/catch

I am trying to figure out how to handle 413 error when uploading files, to show the user that the file they are trying to upload is too large. I am uploading the files from a component in React using React-dropzone, then pass it to sagas, then a…
Carl V.
  • 73
  • 1
  • 7
6
votes
1 answer

Getting error 413 Request Entity Too Large when using SSL, after a few minutes of inactivity

This past Monday we pushed out a new ASP.NET website to our production server for use by the public. One section of the site provides a wizard type interface, each step requesting a fairly small amount of input from the user. Each step of the wizard…
user1919569
  • 63
  • 1
  • 3
5
votes
2 answers

Why browsers display CORS error in case of response 413?

I was testing an REST Api that uploads image file to server. The image was too large and exceeded max request body size, so Nginx refused it and returned response 413(Request Entity Too Large). Nginx: error.log *329 client intended to send too…
kimchoky
  • 112
  • 9
5
votes
1 answer

What is maximum file size to upload via Dropbox API v2?

I am trying to upload files to Dropbox using API v2 /upload endpoint. Sometimes I get a 413 error response from the Dropbox server (Request entity too large). Unfortunately, maximum file size is not described in the documentation, maybe someone know…
edtech
  • 1,508
  • 18
  • 20
4
votes
1 answer

cloudfront responds with a status of 413 (Request Entity Too Large)

We have a requirement to send large data as part of URL which will be read by angular to render the page. Url is of more than 10000 characters. But cloudfront is returning below error - Bad request. Generated by cloudfront (CloudFront) Request…
4
votes
0 answers

Mailgun Error: 413 Request Entity Too Large

I am making this request with the Mailgun API: var filepath = path.join(__dirname, "/output/" + job.jobId + ".zip"); var data = { from: 'Name ', to: email, subject: 'Test', text: 'Test', attachment:…
carte
  • 983
  • 2
  • 9
  • 27
3
votes
0 answers

error 413 request entity too large docker node

I'm getting an 413 request entity too large when I make a request from my nodejs application inside Docker to an outside REST API. When I make this request outside Docker, it goes normally. I was using node 10.16.0 and updated to 12.16.1 without…
3
votes
0 answers

Request failed with status code 413, request entity too large

I have a node.js server combined with a react.js frontend. I've a form that requires users to upload files to a AWS S3 bucket. I'm using Multer.js to handle the file upload. I've set the default upload size to a max of 10mb. While there is…
3
votes
0 answers

Elasticbeanstalk - NGINX - 413 Request entity too large

I know this might be considered a duplicate of: Customizing Nginx Configuration in AWS Elastic Beanstalk (and other questions), but I was unable to make my code work with any of the proposed solutions. This is how my config.yml file looks like (xxx…
3
votes
3 answers

I get 413 Request Entity Too Large when uploading video file to Amazon S3

While uploading a video file to Amazon S3, the file hits 100% in uploading, then i get the response 413 Request Entity Too Large. How do i fix this so that i can upload video files to Amazon S3? Im using Nodejs, Express, Heroku, Cloudflare and…
1
2 3 4 5 6 7 8