Hey
I just created an multisite, and uploaded some pictures too blog2.mydomain.com.
Tought inn "user2" dashbord->media library i cant see thumbs for images. Tought it works in main blog(mydomain.com).
File URL: http://blog2.mydomain.no/files/2011/07/Wayfarer.jpg
Im 100% sure its there : http://mydomain.no/wp-content/blogs.dir/2/files/2011/07/Wayfarer.jpg
My .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteEngine off
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/motefsfh/public_html/php.ini
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END 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]
You know whats wrong? Im not that familiar with MS or WP, kinda new here.
Thnaks in advance for any help :)