Patrick.B
Member
- Messages
- 96
- Reaction score
- 4
- Points
- 8
Hi X10 !
Actually i'm building a php form send to MySQL, and when i'm trying to test, sometimes I receive a Forbidden error.
So, I have search how this came from, and at this point, i'm not sure.
This error is intermitted and only depending on wich words I insert in the forms. I try to do a FilterScanpost OFF in the .htaccess, but seem to not working well ..
The .htaccess test here
When I want to check if secure module is active with a simple phpinfo() function it return me the Forbidden error.
I don't post the full code because the problems is intermitted and seem to be from the "badwords", when I use different words, the form is sended correctly into the DB.
Note: the specific DB line is set to "VARCHAR" at 3000 size and when i'm trying to insert sometings i'm only using 5 or 10 words.
Thank's in advance to people help me
Actually i'm building a php form send to MySQL, and when i'm trying to test, sometimes I receive a Forbidden error.
So, I have search how this came from, and at this point, i'm not sure.
This error is intermitted and only depending on wich words I insert in the forms. I try to do a FilterScanpost OFF in the .htaccess, but seem to not working well ..
The .htaccess test here
Code:
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
When I want to check if secure module is active with a simple phpinfo() function it return me the Forbidden error.
I don't post the full code because the problems is intermitted and seem to be from the "badwords", when I use different words, the form is sended correctly into the DB.
Note: the specific DB line is set to "VARCHAR" at 3000 size and when i'm trying to insert sometings i'm only using 5 or 10 words.
Thank's in advance to people help me