Images on my sub-domain blog network are not showing up - not a 404, but simply showing up blank.
I really, really need a solution to this, so please do help! I run my network on a VPS, CentOS, latest version of everything, full access to all files.
Here is a link to an image not working: http://cat-genie.org/files/2011/02/cat-genie-e1298048555224.jpg
Here is the contents of my .htaccess:
# 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]
# END WordPress
Please send any recommendations and I'll try em out & respond asap.