Re: wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!
Hi, I just installed WP MU 2.7 and am trying to merge it with the latest bbpress install but have some major confusion with the config file secret keys. In new 2.7+ versions of WordPress and WPMU there is no mention of SECRET_KEY or SECRET_SALT, the config instead lists the following 7 keys:
define(‘AUTH_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
define(‘SECURE_AUTH_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
define(‘LOGGED_IN_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
define(‘NONCE_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
define(‘AUTH_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
define(‘LOGGED_IN_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
define(‘SECURE_AUTH_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
While the BBPRESS config only lists one key:
define(‘BB_SECRET_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);
Which key in WPMU 2.7+ is equivalent to BB_SECRET_KEY?
Or, do i now need to define all 7 of the WordPress secret keys in bbpress as well? Eg. BB_AUTH_KEY, BB_SECURE_AUTH_KEY, BB_LOGGED_IN_KEY, etc…
Any help clearing up this config confusion would be great. Thanks!