Hello,
I've just installed the latest version of Wordpress MU and everything was working good (after some cpanel related problems solved reading here - thank you!)
Now I'm having this problem:
When i try to upload a file through the "Write" editor, the file is uploaded but I cannot see it nor in the editor nor directly pointing to the url where the file is.
I think it's ah .htaccess problem because the file is uploaded but it is not viewable.
I've also noticed that for the first blogs the upload path was (example) blogs.dir/BLOGID/file/image.jpg while for the last blogs the path is blogs.dir/BLOGID/file/YYYY/MM/image.jpg
Even if I try to upload an image on one of the first blogs I cannot see it (404 error).
Now, I cannot see any hosted image in any blog!
This is the .htaccess content:
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [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]
Blogs are running in subdomains.
Thank you very much for your help!