Big LBM form construction

I faced with the problem – during the form constructing in a definite moment update starts working not correct, not all the form is sent. I haven’t heard about limitations on POST-requests. Maybe somebody has any ideas?
File: interface/super/edit_layout.php
Version: 4.2.2

Hi E-2,

Can you please explain your issue with more details?

ViSolve

The first screenshot is my form constructor, as you can see “c33” is not the last field of the constructor.

The second screenshot phpinfo(32) is edit_layout.php at the beginning. It can be seen that the last field is received by form - “c33”.

I have tried different browsers(

Hi E-2,

We assume that the issue is related limit of max_input_vars in php configuration file ( php.ini ).
Can you please check your max_input_vars in the php.ini file ? If it is less than your post variable count ( which is in lbm form ) then try to increase the max_input_vars limit as much as you need.

Please let us know if you have any clarifications .
ViSolve

Thank you, visolveemr!
I’ve just added max_input_vars = 10000; at the php.ini and it works!