Just upgraded WPMU the other day. I have checked the .htaccess and everything else in every post I can find. I can upload images into posts and they DO go into the correct blogs.dir files folder. But, when I am viewing the POST itself, logged in or not, the image does not show.
Blog:
http://cordillerablogs.com/jmwebguy/2010/11/12/testing-images/
The image url is: http://cordillerablogs.com/jmwebguy/files/2010/11/sports-300x185.jpg but it does not appear.
The image IS located in this folder: blogs.dir/2/files/2010/11/sports-300x185.jpg
HTACCESS:
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.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>
What other things should I be looking at?