Hi Andrea, thanks for your help. Sorry, heres my full ht
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
As I mentioned as I did the 2.9.1.1 upgrade manually I didn't replace the existing ht file from when it worked previously on version 2.9.1
I've checked my server as follows:
1)LoadModule rewrite_module modules/mod_rewrite.so
appears in my httpd.conf
2) In the directive of my virtual host,
"AllowOverride None"
is changed to
"AllowOverride FileInfo Options"
3) In a section of the config file for my host there I have a line defining
the hostname to add the following to get virtual hosts to work properly:
"ServerAlias *.domain.com"
4) I added a wildcard record to my DNS records. "*" hostname
address record is set to my IP.
5) php compiled with memory limit checks is set to 64MB to avoid PHP out of
memory errors. "memory_limit" in php.ini
I'm completely stuck on this =(