I got the same error. To fix this, I edited /etc/php.d/suhosin.ini
. I changed first
suhosin.request.max_varname_length = 64
to
suhosin.request.max_varname_length = 128
But this cannot be fixed, it just changed the error message (note the GET complaint instead of the request):
Feb 22 17:07:04 <servern name> suhosin[23389]: ALERT - configured GET variable name length limit exceeded - dropped variable '/mehul_bakrania/feedback/personal_coach_and_peak_performance_trai/159296' (attacker '<ip address>', file <file path>')
So I changed:
suhosin.get.max_name_length = 64
to
suhosin.get.max_name_length = 128
Then my problem was fixed. I go 128 because I noticed that the URL causing the problem is about 70 characters.
Tom
source share