Hi there,
I recently upgraded to 3.5 and I realized that my media (images) are all broken.
The parent site, however, is running just fine. The media is only broken on my daughter sites. Currently I am running WordPress MU with around 7 blogs, besides the main one, and the all 7 of them have broken media.
The media uploads correctly to the corresponding blog.dir uploads and I see that they exist. However, whenever I try to view them, they are broken. In addition, the media library shows broken images. On the other hand, my pdf file uploads are working just fine.
My current htaccess file is this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
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]
</IfModule>
# END WordPress
Even when I do
http://daughtersite.parentsite.org/wp-includes/ms-files.php?file=2013/01/image.png, I still get nothing.