Info
- 7 posts
- 2 voices
- Started 2 years ago by thekmen
- Latest reply from thekmen
- This topic is resolved
COOKIEHASH defined in bb-config.php
-
- Posted 2 years ago #
Hi all,
I am trying to integrate BBPress with a few WordPress installs that all share the same user table database.
All is working fine except for adding:
define('COOKIEHASH', md5('my key here'));in the bb-config.php file, no matter what I add here, the cookiehash is never changed using BBPress 1.0.2, is this a bug have I missed something?
-
- Posted 2 years ago #
http://wordpress.org/extend/plugins/bbpress-integration/
install that in WP and it will tell you what it is.
-
- Posted 2 years ago #
I know what my cookiehash is & am including it in the wp-config.php files, it's just bbPress that doesn't seem to set a cookie using the define('COOKIEHASH', md5('my key here'));, I have also tried using define('BB_COOKIEHASH', md5('my key here')); but still no joy.
-
- Posted 2 years ago #
Oops sorry, for integration you don't need the cookie hash.
-
- Posted 2 years ago #
I wish I didn't, but I do...bbPress is setting a cookiehash & I need to change it, I thought this would be possible by using
define('BB_COOKIEHASH', md5('my key here'));or
define('COOKIEHASH', md5('my key here'));in my bb-config.php, but whatever I use as 'my key here' makes no difference to the cookies created by bbPress, any other ideas?
-
- Posted 2 years ago #
http://bbpress.org/forums/topic/integration-woes#post-38595 uses
$cookiehash = md5($baseurl); -
- Posted 2 years ago #
Thanks for the help, I managed to fix the issue by using
define('BB_HASH', md5('my key here'));in bb-config.php
-
You must log in to post.