Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Cookies and WPMU

Try this.

Look at the cookie you have from you mu site. (In firefox: preferences -> privacy -> cookies -> view cookies then find the cookie in question. I’m sure there’s a way to do this in other browsers as well.)

I bet it looks like this:

Name: wordpressuser

Domain: example.com // or is it .example.com ?

Path: /

Send For: Any type of connection

And one for the password too:

Name: wordpresspass

Domain: example.com

Path: /

Send For: Any type of connection

If that is the case, in bbPress’ config.php set the following.

$bb->usercookie = ‘wordpressuser’;

$bb->passcookie = ‘wordpresspass’;

$bb->cookiedomain = ‘example.com’; // or .example.com if there was a . above

$bb->cookiepath = ‘/’;

If I’m wrong in my guess about the structure of yrour cookies, please post what they are (name, domain, path, send for only. Don’t post the content of the cookie).

Skip to toolbar