Our blog has lost the ability to upload images. It was working fine and then one day not ... now we get this:
The uploaded file could not be moved to /usr/www/work/php-apps/mu.wordpress/wordpress-mu-1.2.5a/wp-content/blogs.dir/1/files//2007/11.
Refuses to go any further. You can ftp it directly and put in the link and that's fine but not thru the inline editor. I'm at the end of my rope with this. We have had nothing but problems. This one beats all because it was working!
Also, if you choose 'Browse all' they show up as blank boxes with their filenames on them. Clicking them just takes you to a page with their name again. No image.
My host told me to include this in my post:
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
#RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
RewriteRule ^([_0-9a-zA-Z-]+)/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]
~
-- You see the rewriterule #3 that's what i put, the one above it commented out with the # is what I replaced....
Any help (or a nice long rope) would be appreciated.