Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: BuddyPress and WordPress 3.0


Chad Holden
Participant

@chadmaifithcom

I’ve tried the installation a few times on WAMP, MAMP and multiple installations on the same server … It should be important to note that THIS site bp.org has the same avatar uploading issues with this new template/release.

This is my htaccess file, which makes the avatar cropper work, but I still get the upload error after :
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]
# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress

Skip to toolbar