Hi Ron.
In the installation instructions there is a line in the bb-forum config file thats not there now, just wondering as am setting this up for a client.
Your bb-config.php has a line similar to
$bb_table_prefix = ‘wp_bb_’;
Change that line to
if( function_exists( ‘bp_core_get_table_prefix’ ) )
$bb_table_prefix = bp_core_get_table_prefix() . ‘bb_’;
else
$bb_table_prefix = ‘wp_bb_’;
A few lines below that you’ll see a line similar to
$bb->uri = “https://domain.com/wp-content/plugins/buddypress/bp-forums/bbpress/”;
change that line to
if( function_exists( ‘get_current_site’ ) ) {
$current_site = get_current_site();
$bb->wordpress_mu_primary_blog_id = $current_site->blog_id;
$bb->uri = BP_PLUGIN_URL . ‘/buddypress/bp-forums/bbpress/’;
} else
$bb->uri = “https://domain.com/wp-content/plugins/buddypress/bp-forums/bbp
This is what is missing A few lines below that you’ll see a line similar to
$bb->uri = “https://domain.com/wp-content/plugins/buddypress/bp-forums/bbpress/”;
change that line to
CHeers
Tom