Closed GoogleCodeExporter closed 8 years ago
OK i found the reason, this was totally not a prado issue but a
misconfiguration of php.
The fact is that Suhosin is enabled on my server (i didn't notice :/) and was
configured whith :
suhosin.post.max_name_length=64
suhosin.post.max_totalname_length=254
suhosin.request.max_totalname_length=254
suhosin.request.max_varname_length=64
Since the posted variable of dllFileTypes was
ctl0%24Main%24WholeActionsConfigurator%24ConfigDepotDoc%24ddlFileTypes, it was
rejected by suhosin because of a var length = 70 !
Now my new suhosin conf in php.ini looks like this
[suhosin]
suhosin.post.max_name_length=255
suhosin.post.max_totalname_length=1024
suhosin.request.max_totalname_length=1024
suhosin.request.max_varname_length=255
And everything works like a charm !
Original comment by Maxime.D...@gmail.com
on 31 Dec 2012 at 11:33
Thank you for reporting how you were able to resolve the issue
Original comment by ctrlal...@gmail.com
on 31 Dec 2012 at 11:38
Original issue reported on code.google.com by
Maxime.D...@gmail.com
on 31 Dec 2012 at 9:11