Where is WordPress "auth" cookie salt in WPMU 2.7.1?
-
I have installed my WordPress-MU 2.7 & bbPress1.0.1 and I also try to bridge the cookies between them.
Now the user data is shared by them. But I can’t make the cookie share work.
I have installed “bbPress Integration” plugin for WordPress. I also Copy these from wp-config:
define(‘AUTH_KEY’, ‘blahblah’);
define(‘SECURE_AUTH_KEY’, ‘blahblah’);
define(‘LOGGED_IN_KEY’, ‘blahblah’);
define(‘NONCE_KEY’, ‘blahblah’);
define(‘AUTH_SALT’, ‘bliddyblah’);
define(‘LOGGED_IN_SALT’, ‘bliddyblah’);
Put them in bb-config.php with BB_ in front:
define(‘BB_AUTH_KEY’, ‘blahblah’);
define(‘BB_SECURE_AUTH_KEY’, ‘blahblah’);
define(‘BB_LOGGED_IN_KEY’, ‘blahblah’);
define(‘BB_NONCE_KEY’, ‘blahblah’);
define(‘BB_AUTH_SALT’, ‘bliddyblah’);
define(‘BB_LOGGED_IN_SALT’, ‘bliddyblah’);
But I don’t know what I should fill in bbPress –> Dashboard –> Setting –> WordPress Integration. For example, where is WordPress “auth” cookie salt in WPMU? I also can’t find WordPress “secure auth” cookie salt & WordPress “logged in” cookie salt in my WordPress admin page.
Where can I find them in WPMU?
- You must be logged in to reply to this topic.