I am encountering an issue with cakephp 3. I already know there is a limit of size for POST requests in which the $this->request->getData(); method returns an empty array.
Nevertheless, in this case, I am receiving an array with data, as the size limit has not been exceeded, but I have a very high quantity of inputs in my POST request.
Due to this, although the request is actually sending all those input values, when I check my data in the controller, I do not get all of it, so it seems like the request data is being cut off, presumably because it has too many elements.
Therefore, and as I have not found any clue about it in the official documentation, I would like to know if this intuition is correct and, if so, how to deal with it without changing completely my form's structure, if that is possible.