Re: BuddyBar for bbPress
here is my wp-config with db details and auth key removed
<?php
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘/public_html/wp-blog-header.php’ );
header( “HTTP/1.1 200 OK” );
header( “Status: 200 All rosy” );
}
define( ‘BBDB_NAME’, ‘database here’ );
define( ‘BBDB_USER’, ‘user here’ );
define( ‘BBDB_PASSWORD’, ‘pass here’ );
define( ‘BBDB_HOST’, ‘localhost’ );
define( ‘BBDB_CHARSET’, ‘utf8’ );
define( ‘BBDB_COLLATE’, ” );
define(‘BB_AUTH_KEY’, ‘
‘);
define(‘BB_SECURE_AUTH_KEY’, ‘
‘);
define(‘BB_LOGGED_IN_KEY’, ‘
‘);
define(‘BB_NONCE_KEY’, ‘
‘);
define(‘BB_AUTH_SALT’, ‘
‘);
define(‘BB_LOGGED_IN_SALT’, ‘
‘);
define(‘BB_SECURE_AUTH_SALT’, ‘
‘);
auth keys here ^ same as that in wp-config
$bb_table_prefix = ‘bn_’;
define( ‘BB_LANG’, ” );
$bb->bb_xmlrpc_allow_user_switching = true;
?>