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?
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 , .* - , - .
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
, , , -, .
PHP script? , php.ini
upload_max_filesize
If you have access to change ini.php, value
post_max_size
to
20M
from 8M you can achieve what you want