It appears that the forward slash at the end of the address creates this error
Clicking on the activity and other icons currently returns an address similar to the one below:
http://mywebsite.com/members/ashley/activity
instead it should be:
http://mywebsite.com/members/ashley/activity/
Can someone share their htaccess file, because supposedly mine is causing errors. Thanks
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>
# BEGIN WordPress
# END WordPress
I’m getting the same error with the new trunk..
I didn’t see any difference with the htaccess code above.
Looks like I forgot to update my buddypress-home and buddypress-member themes. It’s all better now.
Thank you nadiamode for sharing. It seems there is no difference between yours and mine. Creede I updated my themes so I am very confused now?!?!?
Does anyone know why I would be getting a 200 error?
Without a trailing slash my website reads as though it is a different address. If someone can give me an idea, I would appreciate it. Actually, I am kinda shocked that I am the only one with this problem, doesn’t anyone else have this problem? My mu wordpress is standard. The only difference I can think is that I am not using the buddypress-home theme?
I’m not using the home theme either, although I do have it in the proper folder. Have you replaced all the files with the latest from the trunk?
Just for the sake of being positive I have deleted and re-uploaded the themes from trunk 462 and there is no change? I just don’t understand.
Just deleted the whole mu-plugins folder and re-uploaded with trunk 462 and still the same?
Also, most avatars are still blocked–cannot see them. When following link it comes up with a 404 page?
famous: Try this test for me, open bp-core/bp-core-catchuri.php and edit line 77:
header("Status: 200 OK", true, 200);
replace it with:
//header("Status: 200 OK", true, 200);
Then re-try and see if you get the same problem.
I feel like that kid who doesn’t ever get picked to play on the team. Everybody else is having fun and I am sitting on the bench! JK
It worked!!!
I still don’t understand why I would be the only one affected by this? By the way thanks for taking the time to help out.