I posted this : PHP 5.2.x: $_POST is empty when any field has value of "drop anywords from anywords"?
I need to disable SecFilterScanPOST from htaccess
In main .htaccess, I placed:
<IfModule mod_security.c>
SecFilterScanPOST Off
</IfModule>
but still, when I post something like “drop anyword from anyword” in any form input field, the $_POST comes to the server empty, I guess apache thinks that this input is a SQL injection that’s why it removes the posts, but it’s not SQL injection!
I tried also inserting SecFilterEngine Off above SecFilterScanPOST Off but still $_POST comes empty
Please help
Try using
SecRequestBodyAccessand without the IfModule.