RANT:
Wow, I read a comment by someone, and they are right. wp e-commerce forums are not helpful for finding out information. But on to my quesiton.
I'm running the latest version of WPMU and wp-eComerce, I'm having problems with images showing up.
http://testfour.website.com/files/wpsc/product_images/thumbnails/QERX.jpg
is what the image URL is showing up in the HTML document.
The files are stored inf the FTP at public_html/wp-content/blogs.dir/4/files/wpsc/product_images/thumbnails/QERX.jpg
I'm guessing there's a .htaccess problem, I have no idea how to work with htaccess files..
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
That is my current htaccess file.
Can someone help me out?
Thanks
-Brad