Linked Questions
60 questions linked to/from What is the size limit of an HTTP POST request?
7 votes
6 answers
20k views
Does $_POST have a size limit? [duplicate]
Possible Duplicate: What is the size limit of a post request? Does $_POST when used in conjunction with forms in PHP have a size limit? Obviously there must be some restrictions with $_GET seeing ...
0 votes
1 answer
1k views
Is there any limitation of data size about the AJAX XMLHttpRequest post function? [duplicate]
Now I want to send a large data to my server, such as Cookies, I know there is a limitation of the Cookies' size. If I want to send some other data to my server, and the size is larger than 10M, ...
-1 votes
1 answer
557 views
Php $_POST Data Limit [duplicate]
Php Post Data Limit I am trying post a very long query string to my page, but halfway it got cut away,what should I set to resolve such issue. Thanks
1 vote
0 answers
429 views
Is there any string size limit in POST request? [duplicate]
I have to make a POST API (python), where the APP will send the encoded string of a file(base64 encoding) in the request body. But, for a large file, the string length can be very large. Thus, wanting ...
1 vote
0 answers
57 views
Post request array length 100 000 not happening [duplicate]
I tried to AJAX post the array data of very large amount(length 100 000) to server to save that it into db, but post request itself aborting. Also we have made settings in server conf post_max_size =...
1708 votes
7 answers
2.1m views
application/x-www-form-urlencoded or multipart/form-data?
In HTTP there are two ways to POST data: application/x-www-form-urlencoded and multipart/form-data. I understand that most browsers are only able to upload files if multipart/form-data is used. Is ...
180 votes
8 answers
99k views
Patterns for handling batch operations in REST web services?
What proven design patterns exist for batch operations on resources within a REST style web service? I'm trying to be strike a balance between ideals and reality in terms of performance and stability....
20 votes
5 answers
95k views
Jquery Ajax - post huge string value
i need to POST a huge string large about 3mb, is it possible to send it to php using not url params? If i send it in url params the request reachs the size limit in url. How can work around this? ...
25 votes
4 answers
24k views
PHP: what's the total length of a $_POST global variable?
I was wondering if anybody knows the total length that a post global could be. e.g: $_POST['formInput'] = "hello world, how long can I be?"; I am creating a site where someone will enter an ...
13 votes
2 answers
44k views
How should I crop an image at client side using jcrop and upload it?
I am working on a component in which there is file-upload HTML control, upon selecting an image using the file-upload element, the image would be rendered on the HTML5 Canvas element. Here is JSFiddle ...
9 votes
3 answers
30k views
How to send large data using POST method?
How do you send large amount of data using POST method? I heard that post method default is 8M now what if you exceed that size? How would you send a plain text to the server?
7 votes
1 answer
26k views
The maximum size of object that can be passed as Parameter to POST method
I have a web API controller with a POST method as follows. public class MyController : ApiController { // POST: api/Scoring public HttpResponseMessage Post([FromBody]MyClass request) { ...
13 votes
1 answer
20k views
Max size of post data in http
Is there any limit in terms of amount of data that can be sent with HTTP POST ? I have seen in some emails there is limit of 25 MB or 20 MB for attachments..,but I think they are imposed by the ...
4 votes
4 answers
9k views
Configuring php.ini in Homestead
I am trying to change the variable max_input_vars in my php.ini file by specifying ; How many GET/POST/COOKIE input variables may be accepted max_input_vars = 2500 and running sudo nginx -s reload ...
1 vote
2 answers
11k views
maximum length of post and get variable name
What is maximum post and get variable limit? I am calling a page in ajax and it goes on fail function $.ajax("data_valid.php?duplicateaccountname=a") .done(function(data) { alert(...