• Resolved kbosu31

    (@kbosu31)


    I’ve scoured the posts trying to find an answer to this and I have found many fixes but none seem to be fixing my issue. This just recently started occurring after we upgraded the wordpress version to 3.2 from another multi site version… both sites in the mu worked fine prior to the upgrade.

    1.) I’ve double checked the .htaccess file and it is correct based on the examples posted… even regenerated it by updating permalinks
    2.) I’ve added ob_clean(); to the ms-files.php file
    3.) I’ve installed the Remove WordPress to WordPress filter
    4.) double checked my upload path in the site settings: wp-content/blogs.dir/3/files

    None of the above have worked.

    Site 1: thepersimmongroup.com
    Site 2: thepersimmongroup.com/speakers

    Site 1 images work but Site 2 user uploaded images do not show…Any help debugging this would be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter kbosu31

    (@kbosu31)

    Also here is my .htaccess file for reference:

    addhandler x-httpd-php5 .php
    
    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    # END WordPress
    Thread Starter kbosu31

    (@kbosu31)

    Fixed My own issue here. I downgraded to 3.0 then upgraded to 3.2.1 and it seems the missing images have magically appeared!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing Images After Upgrade to 3.2 from 3.0 MU’ is closed to new replies.