Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: WordPress + bbPress Integration 101

Got integration working under WP 2.5.1 and bbpress 0.9.0.2

I’d just like to make an observation regarding integration instructions for power users –

Instruction part 8 says: Copy all these items into the bottom of wp-config.php and edit as required:

$wp->cookiedomain = ‘.your-domain-name.com’;

define(COOKIE_DOMAIN,’.your-domain-name.com’);

// note the leading DOT – this is important

// we list both for WordPress legacy compatibility

Originally, I took this to mean:

$wp->cookiedomain = ‘.mysite.com’;

define(COOKIE_DOMAIN,’.mysite.com’);

It wasn’t working. However, once I changed it to:

$wp->cookiedomain = ‘.www.mysite.com’;

define(COOKIE_DOMAIN,’.www.mysite.com’);

and in bb-config.php:

$bb->cookiedomain = ‘.www.mysite.com’;

(adding the www part) It works perfectly fine now.

Hope this helps.

Skip to toolbar