Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: “Add Forum” button numb?

musnake –

One thing you could try, which seemed to get everything working for me. Copy the hashes/salts directly from your wp-config.php file and prefix each one with BB_. Might be excessive, but seems to work for me.

define('AUTH_KEY', 'blah');
define('SECURE_AUTH_KEY', 'blah');
define('SECURE_AUTH_SALT', 'blah');
define('LOGGED_IN_KEY', 'blah');
define('SECRET_KEY', 'blah');
define('SECRET_SALT', 'blah');
define('LOGGED_IN_SALT', 'blah');

becomes:

define('BB_AUTH_KEY', 'blah');
define('BB_SECURE_AUTH_KEY', 'blah');
define('BB_SECURE_AUTH_SALT', 'blah');
define('BB_LOGGED_IN_KEY', 'blah');
define('BB_SECRET_KEY', 'blah');
define('BB_SECRET_SALT', 'blah');
define('BB_LOGGED_IN_SALT', 'blah');

I just couldn’t get the descriptions in bbPress setup page to match all the keys in wp-config.php, so I copied them all over in a brute-force cop out. I am on a subdomain install, not folder, so this might not help.

Skip to toolbar