• I’m having problems uploading pictures to a site I crated in a blog network. The image appears to upload in the proper directory, but doesn’t resolve to the proper network subdomain. For instance, if you go to http://necolebitchie.com/wp-content/blogs.dir/4/files/2010/06/akeys-swizz.jpg the file shows up fine, but if you use this URL: http://bitchielife.necolebitchie.com/files/2010/06/akeys-swizz.jpg it doesn’t work properly. What’s going on? Is something wrong with my .htaccess? This is what’s in there:

    # 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

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Can’t upload pictures on Network site’ is closed to new replies.