Re: Avatar Problems
After listening to Andy’s advise I think I found the problem.
I got rid of all my files except for my tables, and reinstalled a fresh WPMU and buddypress. By accident I didn’t upload the htaccess file–the thing is I realized when the htaccess file is not uploaded the avatars work. However, all pictures on the website do not work.
If I delete line 6 below, then the avatars appear to work. However, if deleted then all pics on the site don’t work. I hope this provides some insight into the problem.
1 RewriteEngine On
2 RewriteBase /
3 #uploaded files
4 RewriteRule ^(.*/)?files/$ index.php [L]
5 RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
6 RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
7 # 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>