It can be solved by increasing 'max_input_vars' value on php.ini file (on the server configuration). I increased this value from 2000 to 200000 and now it is working fine.
However, I tracked the cause and I believe it is due to the following line in nuajax.js file :
line 68
Code: Select all
last.hash = parent.nuHashFromEditForm();
Code: Select all
function nuAjax(w,successCallback,errorCallback){
console.log({nuSTATE : w});
When checking the browser's console I realized that this object (nuSTATE) had many nested nuSTATE.hash.hash.hash.hash objects/variables/values after updating a field and saving the form for several times.
This is because each time the form is saved, a new .hash object is inserted to the last window object.
I hope this helps to find a way to prevent nesting this hash objects for many times.
Kind regrads