Re: Just one more… release candidate 1.0-RC-3
Hey everyone,
Testing out RC3, and it works in terms of bbPress/BuddyPress/WPMu 2.7.1 integration far better than RC2, which had me stumped. I do have one lingering issue with the integrated signon between WPMu and bbPress for anyone who might have a lead. When I login to either WPMu or bbPress it logs me into both applications, however, if I try and logout of bbPress when I originally logged in to WPMu, for example, it won’t log me out. I have to actually go and logout of WPMu to be logged out of bbPress. This was a similar/common issue in a version that was in the 0.7.x or 0.8.x series. And I have the sneaky suspicion there is something in my config files that is baling it. Anyone having a similar issue? Anyone know of a fix? Below are my config files for both wp and bbPress.
Right now I have this in my wp-config:
define( ‘COOKIE_DOMAIN’, ‘.umwblogs.org’ );
define( ‘SITECOOKIEPATH’, ‘/’ );
define( ‘COOKIEPATH’, ‘/’ );
define( ‘COOKIEHASH’, ‘#################’ );
And this in my bb-config:
// WordPress cookie integration speedup
$bb->wp_siteurl = ‘http://umwblogs.org’;
$bb->wp_home = ‘http://umwblogs.org’;
$bb->cookiepath = ‘/’;
$bb->authcookie = ‘wordpress_###################’;
$bb->secure_auth_cookie = ‘wordpress_sec_###################’;
$bb->logged_in_cookie = ‘wordpress_logged_in_###################’;
$bb->admin_cookie_path = ‘/forums/bb-admin’;
$bb->core_plugins_cookie_path = ‘/forums/bb-plugins’;
$bb->user_plugins_cookie_path = ‘/forums/my-plugins’;
$bb->sitecookiepath = ‘/’;
$bb->wp_admin_cookie_path = ‘/wp-admin’;
$bb->wp_plugins_cookie_path = ‘/wp-content/plugins’;
// End integration speedups
define( ‘WP_AUTH_COOKIE_VERSION’, 1 );