Hello,
I have WordPress 2.2.3.
I tried that solution (disabling mod_security) just now — as I’ve been stuck all day with a post that just won’t work once it’s published. (In previews it looks just fine. Once it’s published I get the following message: “Directory has no index file. Browsing this site or directory without an index file is prohibited.”)
The expressioin that causes all the trouble is “home companion” (the post is about the Robert Altman movie).
Even if I do a mere search for that word combination, the whole look of the admin panel gets distorted — and then I get a “forbidden” error message.
My .htaccess (htdocs/blog/ directory) has the following:
Options -Indexes
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>
# END WordPress
Any assistance would be much appreciated. I’ve never run into this sort of problem before in the two years I’ve been using WordPress.