Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Ron Rennick

    (@wpmuguru)

    As far as I know, yes.

    is the installation any different now?

    Has anything changed about the way you install plugins in WP 3.7 (vs 3.6)?

    Thread Starter tom.eagles

    (@tomeagles)

    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

    Plugin Author Ron Rennick

    (@wpmuguru)

    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.

    That line refers to older installs using the bbPress embedded in BuddyPress. If you are using the bbPress plugin you can skip that.

    Thread Starter tom.eagles

    (@tomeagles)

    Cheers Ron

    many thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hi there’ is closed to new replies.