Linked Questions

7 votes
6 answers
20k views

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 ...
Anonymous's user avatar
  • 6,261
0 votes
1 answer
1k views

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, ...
Toly's user avatar
  • 45
-1 votes
1 answer
557 views

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
user1548465's user avatar
1 vote
0 answers
429 views

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 ...
Ayush's user avatar
  • 414
1 vote
0 answers
57 views

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 =...
Sunil kumar's user avatar
1708 votes
7 answers
2.1m views

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 ...
max's user avatar
  • 30.1k
180 votes
8 answers
99k views

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....
Mark Renouf's user avatar
  • 31.1k
20 votes
5 answers
95k views

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? ...
bombastic's user avatar
  • 3,061
25 votes
4 answers
24k views

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 ...
phpNutt's user avatar
  • 1,529
13 votes
2 answers
44k views

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 ...
Govinda Sakhare's user avatar
9 votes
3 answers
30k views

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?
Andrew Chamberlain's user avatar
7 votes
1 answer
26k views

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) { ...
paul deter's user avatar
13 votes
1 answer
20k views

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 ...
Brij's user avatar
  • 13.4k
4 votes
4 answers
9k views

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 ...
jstein's user avatar
  • 643
1 vote
2 answers
11k views

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(...
Mandeep Singh's user avatar

15 30 50 per page