Hello all. I upgraded from WordPress 2.9.2 to WordPress 3.0. Enabled multisites with the subdomain option. Created my first subdomain and all works fine. The problem is that when I upload images, they are uploaded to blogs.dir, but they aren't displayed. I read that this should be solved with the following code in my httpd.conf file:
<Directory>
Options FollowSymLinks
AllowOverride All
</Directory>
Still not working. I let you the my .htaccess content:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
#Wordpress Multi site
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
#END WordPress Multi Site
I have my own server running CentOS and Plesk 9