I'm having this problem with a form, whenever I submit a form in this new server I get a 406 Error - Not Acceptable.
I only have access to the FTP of this server so any changes I have to made is limited by that.
I've checked if mod_security is enabled by doing this:
<IfModule mod_security.c>
... Perform some kind of redirect or re-writing in here ...
</IfModule>
It didn't redirect so it means mod_security is not installed? If I run the redirect outside the IfModule tag it would redirect without any problem.
I've created a test form for you guys to test, just type in % on any field and click submit then it would display the error. Any alphabet character is okay and will not display the error.
(removed link)
Also I've added this in my htaccess file and the problem is still there.
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
What seems to be the problem here?