I have encountered a pretty weird bug. I am trying to submit an array containing 290 items with each 5 properties serialized in JSON to my server.
For an unknown reason when I output the count of the request server side it's only 200.
I tried to simply output $_POST to see if there was a difference but the number of item is the same (200). After some research I found that it might be post_max_size config but it is set to 128M.
I can confirm using the chrome dev tool that the data sent exceeds the 200 items received by the server.
Thanks for your time