Re: WordPress + bbPress Integration 101
Still the same here, but i found something else.
I have two sets of identical cookies, but there is one difference
I have domain .website.com in the one
and host website.com in the other, but i don’t knew why…
in my wp-confing.php
$wp->cookiedomain = ‘.website.com’;
$wp->cookiepath = ‘/’;
$wp->sitecookiepath = ‘/’;
define( ‘COOKIEHASH’, ‘xxx’);
define(‘COOKIE_DOMAIN’, ‘.website.com’);
define(‘COOKIEPATH’,’/’);
define(‘SITECOOKIEPATH’, ‘/’);
and in bb-config.php
$bb->cookiedomain = ‘.website.com’;
$bb->cookiepath = ‘/’;
$bb->sitecookiepath = ‘/’;
define(‘COOKIE_DOMAIN’, ‘.website.com’);
define(‘COOKIEPATH’,’/’);
do you have any ideas?