<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Topic: wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!</description>
<language>en</language>
<pubDate>Thu, 20 Nov 2008 20:22:16 +0000</pubDate>

<item>
<title>matjack1 on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-17323</link>
<pubDate>Tue, 15 Jul 2008 21:48:52 +0000</pubDate>
<dc:creator>matjack1</dc:creator>
<guid isPermaLink="false">17323@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thank you!!&#60;/p&#62;
&#60;p&#62;works also for me! :-P
&#60;/p&#62;</description>
</item>
<item>
<title>caesarsgrunt on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-17151</link>
<pubDate>Wed, 09 Jul 2008 18:34:46 +0000</pubDate>
<dc:creator>caesarsgrunt</dc:creator>
<guid isPermaLink="false">17151@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you so, &#60;em&#62;so&#60;/em&#62; much, &#60;strong&#62;sepidol&#60;/strong&#62;! You've made my day! I've spent hours trawling the bbPress and WPMU forums for this...&#60;/p&#62;
&#60;p&#62;For what it's worth, my problem was the SECRET_SALT. I'd done everything else right, but each time I logged into either bb or wp I was logged out of the other 'cause of the cookie value being encrypted differently... I thought the salt may have been the problem, but I wasn't quite sure what it did. This is the first thread I've found which even mentions it!&#60;/p&#62;
&#60;p&#62;Thanks...&#60;br /&#62;
Caesar
&#60;/p&#62;</description>
</item>
<item>
<title>tdjcbe on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16586</link>
<pubDate>Tue, 03 Jun 2008 00:19:37 +0000</pubDate>
<dc:creator>tdjcbe</dc:creator>
<guid isPermaLink="false">16586@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for this.  It fixed our issue with the login cookies.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16509</link>
<pubDate>Thu, 29 May 2008 11:42:32 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">16509@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Actually, the bbPress secret can live in the database. But you are right that the WPMU one cannot, mostly for login compatibility between blogs within WPMU.&#60;/p&#62;
&#60;p&#62;Obviously you should choose your own secret and salt values, not the one's given above.
&#60;/p&#62;</description>
</item>
<item>
<title>sepidol on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16508</link>
<pubDate>Thu, 29 May 2008 09:38:52 +0000</pubDate>
<dc:creator>sepidol</dc:creator>
<guid isPermaLink="false">16508@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;my mistake,&#60;br /&#62;
make sure your BB_SECRET_KEY and BB_SECRET_SALT value on your bb-config.php are the same with SECRET_KEY and SECRET_SALT value on your wp-config.php&#60;/p&#62;
&#60;p&#62;cheers,&#60;/p&#62;
&#60;p&#62;--&#60;br /&#62;
rh
&#60;/p&#62;</description>
</item>
<item>
<title>sepidol on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16507</link>
<pubDate>Thu, 29 May 2008 09:35:09 +0000</pubDate>
<dc:creator>sepidol</dc:creator>
<guid isPermaLink="false">16507@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i just solved my login cookie issue after one night debugging...&#60;br /&#62;
i found these things:&#60;br /&#62;
- by default, wpmu generate auth_cookie as &#34;wordpress&#34;, but bbpress generate as &#34;wordpress_xxxxx(hash)&#34;&#60;/p&#62;
&#60;p&#62;- wpmu not using &#34;database secret&#34; for cookie hashing, but it use the SECRET_SALT constant defined in the wp-config.php, bbpress using &#34;database secret&#34;. so the cookie result will never be the same.&#60;/p&#62;
&#60;p&#62;you need to update your bb-config.php file to meet these situations.&#60;br /&#62;
assumed you've successfully install wpmu + bbpress, then edit your bb-config.php and add these line:&#60;/p&#62;
&#60;p&#62;define('BB_SECRET_KEY', 'yourreallysecretkey');&#60;br /&#62;
define('BB_SECRET_SALT', 'yourreallysecretsalt');&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;authcookie = 'wordpress';&#60;br /&#62;
$bb-&#38;gt;cookiedomain = '.yourdomain.com';&#60;br /&#62;
$bb-&#38;gt;cookiepath = '/';&#60;br /&#62;
$bb-&#38;gt;sitecookiepath = '';&#60;/p&#62;
&#60;p&#62;and try to login... voila.. you can switch to bbpress and wpmu without re-login... :)&#60;/p&#62;
&#60;p&#62;good luck,&#60;/p&#62;
&#60;p&#62;--&#60;br /&#62;
rh
&#60;/p&#62;</description>
</item>

</channel>
</rss>
