Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Cookie Domain Settings?

You have to add these lines to your bbPress config.php file – not sure who posted it, but it’s not my idea.

//your try to sync cookies
$bb->cookiedomain = '.myurl.com';
$bb->cookiepath = '/';

You also have to edit WP core files I think.

wp-settings.php line 190
FROM
define('COOKIE_DOMAIN', false);
TO
define('COOKIE_DOMAIN', '.myurl.com');

I’ve got it set up so at http://www.loinhead.net (and forums.loinhead.net) and it works nicely. :)

Skip to toolbar