How about just putting the correct value in bb-config.php?
define('BB_SECRET_KEY',
Just make that the same as the value in wp-config.php
There’s no way in Plesk to manage the database? That seems odd. Do you have shell access where you could use mysql from the command line?
hmm – have to think about that one
chris, there are two parts to the key, you can’t define the other part via the bb-config.php
actually – have you tried completely clearing your cookies? Even with a mismatched key you should be able to login, just not sync with wordpress. The cookies might be scrambled until you clear them.
It might be possible to do this inside bb-config.php
$bb->secret=”blah blah your key”;
and override the internal db.
I have to lookup if “secret” is the real name though.
(that’s in addition to define(‘BB_SECRET_KEY’ )
Yeah, apparently it really is $bb->secret
give that a try.
_ck_ That worked!!!! Thank you so much!!!
chrishajer
I don’t have access to my client’s hosting plus I’m not very familiar with Plesk to guide him without looking at it myself.
Anyhow, the problem has been solved )
On a sidenote: This forum keeps telling me my username does not exist when I try going to my profile or favourites 😮
Glad to hear it worked – remember to not keep using $bb->secret
though in your config and update the db properly as it lowers the security of your setup somewhat.
(The idea being an attacker might gain access to bb-config.php and not your db to gain the second half of the key – not my design and not sure I agree with the logic but I guess it’s still better than keep both in an obvious place)