Had some awful problems with mod_security, not least at hosts like eukhost where mod_security is enabled and prevents basic installs of Wordpress and vbulletin from functioning.
Anyway, here's the code to paste into .htaccess to get around the mod_security settings and allow your site to work properly:
Quote:
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
SecFilterCheckURLEncoding Off
</IfModule>
|