I’m getting 404 when I try any buddypress related page /groups/, /activity/, /register/, etc. on your site.
If you see this to be true as well, it might have to do with a permission issue on your server. I just had this the other day. And actually it could be several things if not that. What versions of wp and bp are you using? What other plugins do you have installed and list which are active and deactivated. As well, what is your environment? is it shared hosting, server, vps, etc.?
I have set this page for registration : http://www.inandaboutdubai.com/register But for some reason it bounces back to the home page.
@anshul_01 this is normal behavior if you try to go to the register page while you’re logged in. Log out first.
@vegaskev you’re getting 404 because BuddyPress is not activated in anshul’s site. Deleted BP pages in all probability
Hi, I resolve (ubuntu server 12.04, apache2) this problem as follow:
1) Execute the setup wizar of BuddyPress after the plugin activate
Tip from https://codex.buddypress.org/user/setting-up-a-new-installation/installation-wizard/
2) Move the plugins\buddypress\bp-themes to wp-content/themes and set the pretty permalink. I’am using the month + name.
Tip from http://wpmu.org/buddypress-now-supports-wordpress-single-user-no-wpmu-required/
3) Set the Apache2 mod_rewrite with
# sudo a2enmod rewrite
and change the option AllowOverride of None to all in the file /etc/apache2/sites-avaliable/default
…
`
Options Indexes FollowSymLinks MultiViews
AllowOverride all`
…
Tip from http://www.lavluda.com/2007/07/15/how-to-enable-mod_rewrite-in-apache22-debian/