Content size of a variable from a request

Asked

Viewed 35 times

1

I have a web application developed in Laravel 5.0, which receives a request via POST from another application. The data sent is a JSON with a relatively large amount of information, and when I get this request and access the data via Request::all() depending on the size I am losing part of the data.

We did a test taking this data via file_get_contents(), i.e., native PHP and we realize that the data arrives complete.

Initially we believe you have some configuration in PHP.INI regarding the size a variable can accept.

I would like to know whether I am on the right track or whether you have been through this and how it was resolved.

  • Maybe this can help you. https://secure.php.net/manual/en/info.configuration.php#ini.max-input-vars Or, set a higher value to max_input_vars no php.ini

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.