I'm using jQuery.post
, one of the fields is a large string. it's probably 2MB of text.
The jQuery.post
request goes through okay, but this field doesn't exist in PHP's $_POST
array.
All other posted fields are fine. It's definitely being sent, and is actually in file_get_contents("php://input")
If I reduce the size of the large string, it appears in the $_POST
data again.
How can I remove this field size limit so PHP will push the large field into $_POST
?
EDIT: I changed post_max_size
to 100M
and it didn't change anything.