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.

142 questions
0
votes
1 answer

Google App Engine Blobstore API on Django

I have an app built in Django and currently deployed on Google App Engine. Everything works fine except for when I want to upload files larger than 32MB. I get an error which says, 413. That’s an error. I have been doing some research and I've come…
0
votes
1 answer

Error "Request entity too large" - all properties have top values

I'm trying to consume a WCFservice, but i'm getting HTTP 413 error "Request entity too large". I configured WCF service's web.config with the following:
Javi
  • 19
  • 1
  • 7
0
votes
0 answers

Is 413 Payload Too Large pointless from server perspective?

Consider a POST request, sending a big file. At some point - either after reading Content-Length or during reading the body, if chunked transfer - the server decides that the body length is too big. According to http, the server should reply with…
ezegoing
  • 526
  • 1
  • 4
  • 18
0
votes
1 answer

Geoserver - GetFeature SHAPE-ZIP request - 413 error

I am using Geoserver with an app written with OpenLayers 3. The app can download zipped shapefiles using a WFS service, which works unless I make a large (long URL) request. In that case I get a 413 error in Chrome. Is there a way I can change…
JasonBK
  • 539
  • 3
  • 12
  • 37
0
votes
1 answer

I become the error message "413 Request Entity Too Large nginx"

I have a script (similar to youtube) on my Dedicated root server, but I can not upload large video files. I get this error message: 413 Request Entity Too Large nginx The programmer has written a php file, which directly displays the error…
Maik
  • 1
  • 1
  • 4
0
votes
1 answer

The remote server returned an error: (413) Request Entity Too Large in WCF

WCF Service is returning The remote server returned an error: (413) Request Entity Too Larg but data size only 80KB i configured 2GB max size. I tried in stack overflow but still I am facing the same issue. Configuration:
0
votes
1 answer

How to increase input payload size in wso2 API manager

How to configure input payload size in wso2 API manager we have to send payload size is more than 2MB. that is application/json request 413 Request Entity Too Large
0
votes
0 answers

Retrofit 2 - SSLException instead of 413

I'm trying to send a file (230MB) to NGinx/1.10.2 server. The server is configured to handle max 200MB. I send a file like this: @Multipart @POST("api/test") Completable test( @PartMap Map params, @Part…
Lau
  • 1,804
  • 1
  • 23
  • 49
0
votes
2 answers

BasicNetwork.performRequest: Unexpected response code 413?

i want to submit an array to my server through the following method. my array also contain images in string format(encoded in string format). without images string it work for me. but when i add string encoded images it give the following…
ibad ur rahman
  • 1,381
  • 4
  • 18
  • 40
0
votes
1 answer

Mailgun and Laravel - Resulted in a 413 Request Entity Too Large

I am trying to attach a 75M File to and email using laravel. I keep getting the error below. Using answers from other "duplicate" questions. I have added the upload_max_size, post_max_size and even tinkered with LimitRequestBody Non of that is…
Fenn-CS
  • 863
  • 1
  • 13
  • 30
0
votes
1 answer

PHP + Ajax: Uploading large content via Ajax (413 HTTP Code)

I've spent good 2 days on this issue and I'm reaching a desperation point. I am hitting my request limits when I am uploading file content via Ajax - Request Entity Too large. I am on an Apache server. I am able to modify php.ini and htaccess but…
Allen S
  • 3,471
  • 4
  • 34
  • 46
0
votes
1 answer

Alternative to ajax and form post when uploading image to server

I'm using summernote text editor and the default behaviour when uploading a file is to upload it as base64. So i decided to store these images in storage throught ajax and php, but when i pushed the changes to production, image upload failed becouse…
user8085571
0
votes
1 answer

Dropbox Core API 413 error on creating a share link

Im currently trying to create a share links for a pdf file that was just uploaded through my App while using the Dropbox Core API. The code is below: request.post('https://api.dropboxapi.com/1/shares/auto/proposals/'+name+'?short_url=false',{ …
Skywalker
  • 4,984
  • 16
  • 57
  • 122
0
votes
0 answers

WCF Error 413 Request Entity Too Large issue not solved by maxReceivedMessageSize

I encounter a 413 Request Entity Too Large error on my WCF 4.0. Here's the server web.config file :
Thordax
  • 1,673
  • 4
  • 28
  • 54
0
votes
0 answers

Rails 3.2 Nginx-Unicorn 413 Request Entity too large

I'm running a Rails 3.2 app on an nginx-unicorn set up and when I try to upload a file (using dropzonejs) that's 1MB or larger I get a "413 Request Entity too large" error. I've tried changing the nginx.conf file to increase: client_max_body_size…
user2967603
  • 139
  • 12
1 2 3
9
10