max_input_vars has a value limit?

Asked

Viewed 245 times

1

Does the configuration variable max_input_vars have a limit value? I’m setting the value of this variable to 9999999 but even so PHP is complaining that the value being sent is greater than 20000, 20000 would be the limit value to put in this variable?

1 answer

2


The max_input_vars is relative to the quantity of variables.

Maybe your problem is with the size (in bytes) of the content sent. There are other configs related to this, such as post_max_size

If the claim is the value sent, then it is the size (in bytes) of it and not the number of variables.

  • I modified the post_max_size, the error took longer to happen but it happened. I think I’m trying to send a lot of data at once

  • If you want to share exactly what you’re doing, maybe I can help you out...

Browser other questions tagged

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