0
I have a page that receives a post with an array larger than 1000, this array was "small" and worked well, but I recently realized that part of the content sent now is not coming from the other side, there is some restriction on the amount of data sent in the Post to PHP?
Exists the configuration
post_max_size
, but if the data exceeded this size the superglobal variables$_POST
and$_FILES
would be empty, not partially filled as you reported. So it is possible that the problem is another. Already checked your server log files?– Woss
thanks, it was that post_max_size same, solved here, thanks!
– Anj Junior