Re: Step two questions
All that means is you should go into your wp-config and copy the whole lines for AUTH and SALT. Then paste those into bb-config, but name ’em BB_AUTH and BB_SALT
Example:
In wp-config.php I have
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');
In bb-config.php I have
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');