Here is the error I am getting:
The image "http://lincoln.playcreativeinc.com/files/2012/02/lincoln_footer_1.jpg" cannot be displayed because it contains errors.
When I navigate to http://lincoln.playcreativeinc.com/wp-content/blogs.dir/3/files/2012/02/lincoln_footer_1.jpg the image shows up fine.
When I use the media library for http://www.playcreativeinc.com images do not have this issue, only the subsites.
Here is my .htaccess file:
# 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
After contacting Dreamhost here is what they say is in my httpd.conf file:
AllowOverride AuthConfig FileInfo Indexes Limit
Options=ExecCGI,Includes,Indexes,MultiViews,SymlinksIfOwnerMatch,FollowSymlinks
To be clear I didn't set any of the options up in this file, but is it specifying too many options? Should I change it to AllowOverride FileInfo Options?