Very new to this please bear with me! thanks! I am running 3.1.2 multisite on hostgator. My uploads to my main site are fine they go to
mysite.com/wp-content/uploads/2011/04/image.jpg
My uploads to my subdomains are not working! They are showing the file going to:
sub1.mysite.com/files/2011/06/image.jpg
as the link url. But the file is not there. And if I posted the pic in a page there is just an x.
Here is one of the subdomains where this is happpening.
http://mysite.bestnewbornphotographers.org/
So my amature eyes see that the folder is /files/2011/06/ - is it suppose to be in the blogs.dir folder something like this:
wp-content/blogs.dir/4/files
Below is the rewrite code in htaccess.
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]
ANY HELP WOULD BE GREATLY appreciated! thanks in advance.
Bill