Title: Image upload problem
Last modified: August 19, 2016

---

# Image upload problem

 *  [Ansay](https://wordpress.org/support/users/ansay/)
 * (@ansay)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/)
 * Hello once more
 * There is a problem when I upload an image it want show a thumbnail and the link
   you get to the image want work. It say it can find it, so i thought i look at
   the FTP and i find the picture but i can not link to so i can not use it. So 
   what to do?
 * If i go to the Media Library and then wive the image it will show it like [this](http://firefly.wordofmy.com/?attachment_id=28)
   /
   Jesper C

Viewing 14 replies - 1 through 14 (of 14 total)

 *  [mymorningstory](https://wordpress.org/support/users/mymorningstory/)
 * (@mymorningstory)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789248)
 * This actually sounds like a permission problem. Check to see if your permissions
   are set in that folder to 755 or 777. Make sure the image is set up like that
   as well.
 *  Thread Starter [Ansay](https://wordpress.org/support/users/ansay/)
 * (@ansay)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789251)
 * done that and they are all 777 and still it want show the image :/
 *  [mymorningstory](https://wordpress.org/support/users/mymorningstory/)
 * (@mymorningstory)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789260)
 * ok, I’m not an expert but heres my opinion;)
    your image is this: [http://firefly.wordofmy.com/files/2010/11/02002_theopallake_1440x900.jpg](http://firefly.wordofmy.com/files/2010/11/02002_theopallake_1440x900.jpg)
 * But, is that where your image is uploaded at? If you have the image saved in 
   that exact location, w/ correct permissions – then it should appear via that 
   link. I have never had a problem just viewing an image before, unless the link
   was written incorrectly, or the permissions were bad.
 * with that being said, maybe you contact host support?
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789261)
 * If the image is there and permissions are okay, what’s in your .htaccess file?
 *  Thread Starter [Ansay](https://wordpress.org/support/users/ansay/)
 * (@ansay)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789266)
 * mymorningstory.
 * wp-content/blogs.dir/56/files/2010/11/02002_theopallake_1440x900.jpg
    it the 
   patch way on the ftp. i will contact them then if you think that is what need
   to be done
 * ipstenu.
 *     ```
       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>
       ```
   
 * That what´s in it
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789281)
 * Okay, It looks like you were running WPMU. I would replace that with this:
 *     ```
       # BEGIN WordPress
       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]
       # END WordPress
   
       <IfModule mod_security.c>
       <Files async-upload.php>
       SecFilterEngine Off
       SecFilterScanPOST Off
       </Files>
       </IfModule>
       ```
   
 *  Thread Starter [Ansay](https://wordpress.org/support/users/ansay/)
 * (@ansay)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789287)
 * Done it and it want to show my image :(. Should i reinstall WordPress? if so 
   how do i export all the blogs that are online now ?
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789298)
 * Is this happening on all blogs or just one?
 *  Thread Starter [Ansay](https://wordpress.org/support/users/ansay/)
 * (@ansay)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789300)
 * all of them
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789336)
 * Okay, a direct link works so we know the images are there.
 * [http://firefly.wordofmy.com/wp-content/blogs.dir/56/files/2010/11/02002_theopallake_1440x900.jpg](http://firefly.wordofmy.com/wp-content/blogs.dir/56/files/2010/11/02002_theopallake_1440x900.jpg)
 * However if I try to manually use the ms-files link it doesn’t work. First make
   sure that the ms-files.php file is there in the WP-includes folder. If so … Can
   you check if mod-rewrite is fully enabled on your server? Most of the time in
   this situation, that’s the problem.
 *  Thread Starter [Ansay](https://wordpress.org/support/users/ansay/)
 * (@ansay)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789369)
 * ms-files.php is in WP-includes, dose it have to do whit that I had WPMU before
   WPMS? When i updated it want me too change form blogs.php too wp-files.php in
   the .htaccess and delete the blogs.php file.
 * For mod_rewrite i did this test [http://wordofmy.com/rewrite.php](http://wordofmy.com/rewrite.php)
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789379)
 * Well .. I’m assuming it all worked on WPMU and broke after you upgraded (which,
   if so, is something you should always state in the beginning of your posts 😉
   it’s useful!).
 * Most likely is you have an incomplete upgrade. Try reuploading all the wordpress
   3.0.1 files.
 *  Thread Starter [Ansay](https://wordpress.org/support/users/ansay/)
 * (@ansay)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789417)
 * Okay sorry for that I did not think of it >_< so sorry for that but i will do
   that 🙂
 *  [Andrea Rennick](https://wordpress.org/support/users/andrea_r/)
 * (@andrea_r)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789502)
 * And double check the upgrade instructions.
    [http://wpmututorials.com/how-to/upgrading-to-3-0/](http://wpmututorials.com/how-to/upgrading-to-3-0/)

Viewing 14 replies - 1 through 14 (of 14 total)

The topic ‘Image upload problem’ is closed to new replies.

## Tags

 * [image](https://wordpress.org/support/topic-tag/image/)
 * [thumbnail](https://wordpress.org/support/topic-tag/thumbnail/)

 * In: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
 * 14 replies
 * 4 participants
 * Last reply from: [Andrea Rennick](https://wordpress.org/support/users/andrea_r/)
 * Last activity: [15 years, 6 months ago](https://wordpress.org/support/topic/image-upload-problem-23/#post-1789502)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
