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
2
votes
1 answer
Django nginx 413 Request Entity Too Large
After logining the admin page it is returning 413 error (Request Entity Too Large). Than I added client_max_body_size to my /etc/nginx/nginx.conf and restarted nginx, but it didnt helped :(
I know that this error is a common one, but I had to ask…

BareTalk
- 63
- 1
- 6
2
votes
1 answer
Errors 504 and 413 in fresh installation on NGINX server
I have set up my first nginx server and in PhpMyAdmin i am getting the following errors:
Error 413 - Request Entity Too Large
Error 504 - Gateway Timeout Reloaded
I used the following line and install the nginx and php files.
sudo apt-get install…

PeterPan2020
- 174
- 1
- 12
2
votes
2 answers
how to handle lambda error from the API gateway
Using AWS I have set up a Lambda function using Python to act as a proxy. From the API Gateway I have linked the lambda (with 'Use Lambda Proxy integration' checkbox selected) to my API Gateway. Everything is working fine except that the max size of…

skyleguy
- 979
- 3
- 19
- 35
2
votes
0 answers
413 Request Entity Too Large in docker
i'm running a laravel project in docker, i'm uploading file on amazon s3 but when i upload file bigger than 5mb i get this error
1
i've already edited the nginx.conf file with
client_body_buffer_size 400M;
client_header_buffer_size…

Filippo
- 21
- 1
- 2
2
votes
1 answer
Where to find the conf for DropWizard embedded http server?
We have an application (Restful api) built using DropWizard. When we try to post with a body with size 906KB, it throws exception "413 Request Entity Too Large" error.
I googled around and see the solution seems to change the http server (ngix,…

Laodao
- 1,547
- 3
- 17
- 39
2
votes
2 answers
Request entity too large when passing POST data in curl
I have a fastcgi++ service. It takes 4 parameters through POST because one of them is a password. My sample input is 61 characters. This is how I am calling my service:
curl --data 'name=test&address=abc&phoneNumber=0987654321&password=test123'…

Hemil
- 916
- 9
- 27
2
votes
2 answers
okhttp3 - 413 Request Entity Too Large
When my system send a http request using okhttp3 the follow issue occurs:
413 Request Entity Too Large
I would to know how I set a maximum size in okhttp3 request or if there is another solution for this issue.
public static String post(String url,…

Mauricio Alves
- 33
- 1
- 3
2
votes
2 answers
Undocumented Sheet API limitation problems
I already looked at posts with people getting similar issues but couldn't find a clear answer.
I try retrieve a 2D array of 264735 slots using this lines of code:
var optionalArguments = {majorDimension: "ROWS",
…

JSmith
- 4,519
- 4
- 29
- 45
2
votes
2 answers
jenkins upload file to artifactory failed, I got 413 error
Error Log:
For pattern: EMB5216_DO/DEVELOPER/SCTF/OUT/* 23 artifacts were found.
17:32:52 Deploying artifact:http://192.168.5.2:9081/artifactory/LTEV5/SCTF/232/sctf_usdpaa_eth.so
17:32:52 Deploying…

Ling
- 25
- 2
- 6
2
votes
0 answers
error 413 request entity too large godaddy server while uploading large image
I have added this one in php5.ini file but this does not solved my problem-
post_max_size = 750M upload_max_filesize = 750M max_execution_time =
5000 max_input_time = 5000 memory_limit = 1000M
I found one more suggestion in htaccess but not…

Chirag Jain
- 628
- 11
- 24
2
votes
1 answer
WCF error when using SSL / TLS
We have an application that is using a http binding that has this configuration on the client side:

James R
- 145
- 2
- 13
2
votes
1 answer
413 Request Entity Too Large on DigitalOcean
I have changed client_max_body_size to 100M on etc/nginx/nginx.conf, I have changed upload_max_filesize to 100M on etc/php5/fpm/php.ini and post_max_size to 100M on etc/php5/fpm/php.ini and I still cannot get the file upload to work.
Has anyone else…

bin0
- 125
- 1
- 3
- 9
2
votes
1 answer
Inconsistent response using input type="File" using ColdFusion 8
We are running ColdFusion 8 in IE-10 on Windows Server 2003 with IIS 6.0 and using HTTPS.
The Test.cfm page has this basic code for creating a "browse" button to select a file to upload and then uploading the file:
…

Tony Soprano
- 21
- 1
1
vote
1 answer
How to resize or compress the image to the minimum before posting by form-data body in react native to avoid error 413?
I use 'expo-image-picker' library to get image.
let result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.Images,
aspect: [3, 3],
quality: 0,
…

Mai Đức Thắng
- 13
- 4
1
vote
2 answers
How can I compress a b64 file in Python?
I am using the DALLE API to generate images, and taking that file and uploading it to spotify as a playlist cover. However I receive a 413 error when I run the following line:
sp.playlist_upload_cover_image(playlist_id=playlist_id,…

Joe Posthauer
- 11
- 1