How to send big data using the POST method?

How do you send a large amount of data using the POST method?

I heard that the default method is 8M by default, if you exceed this size? How do you send plain text to the server?

+5
source share
3 answers

Good answer David :

The request URL (GET and POST) can be limited by both the browser and server - usually the safe size is 2 KB, since there are almost no browsers or servers that use a lower limit.

(POST) * , DoS ( , , ). 10 , .

* - , - .

?

: 2 URL- 2097152 Char .

, , ajax

+4

, , , -, .

PHP script? , php.ini

upload_max_filesize

+1

If you have access to change ini.php, value

post_max_size

to

20M

from 8M you can achieve what you want

-1
source

All Articles