Images upload fine but are broken and wont display
-
I have a real brain buster of an issue with images.
Images upload fine and get stored in the proper folder…
I just uploaded one, and it went to the
/wp-content/blogs.dir/27/files/2010/9 folder on the server.However, the image didn’t display in the uploader preview, or on the post… and I can’t direct link to it.
Thanks in advance for any help, i’m just not sure where to go from here or what I can search for.
This is my .htaccess file…
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]RewriteRule ^(.*/)?uploads/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?uploads/(.*) 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]
- The topic ‘Images upload fine but are broken and wont display’ is closed to new replies.