<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; User Favorites: horrorshow</title>
		<link>http://bbpress.org/forums/profile/</link>
		<description>bbPress Support Forums &#187; User Favorites: horrorshow</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 16:11:17 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>pimarts on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on/page/2#post-90241</link>
			<pubDate>Thu, 28 Jul 2011 21:06:21 +0000</pubDate>
			<dc:creator>pimarts</dc:creator>
			<guid isPermaLink="false">90241@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Pretty excited to see if you can find another topic to paste that link into.
</p>]]></description>
					</item>
		<item>
			<title>Ipstenu on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on/page/2#post-23930</link>
			<pubDate>Wed, 11 Feb 2009 17:28:40 +0000</pubDate>
			<dc:creator>Ipstenu</dc:creator>
			<guid isPermaLink="false">23930@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>In your bb-config:<br />
<code>$bb-&#62;wp_table_prefix = &#39;wp_econome&#39;;  // WordPress table prefix.  Example: &#39;wp_&#39;;</code></p>
<p>In your wp-config:<br />
<code>$table_prefix  = &#39;wp_econome_&#39;;   // Only numbers, letters, and underscores please!</code></p>
<p>Looks like you're missing an underscore in bb-config.</p>
<p>Also try changing this on your bbconfig: <code>$bb-&#62;sitecookiepath = &#39;/starteconome/blog/&#39;;</code>
</p>]]></description>
					</item>
		<item>
			<title>LastHero on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on/page/2#post-23927</link>
			<pubDate>Wed, 11 Feb 2009 16:40:05 +0000</pubDate>
			<dc:creator>LastHero</dc:creator>
			<guid isPermaLink="false">23927@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I have done all the above directions but still can't seem to get anything to work. It is not detecting the cookie and having be already logged in to bbpress after wordpress login. I have been working on this for some time.</p>
<p>I have the exact same scenario that schmitt has at the beginning of this thread.</p>
<p>Please help me out here, I have posted several thread but no one has helped me or taken a look at my config files.</p>
<p>Here they are:</p>
<p>bb-config.php<br />
<pre><code>&#60;?php

// ** MySQL settings ** //
removed for security

define(&#39;BBDB_CHARSET&#39;, &#39;&#39;);      // If you are *upgrading*, and your old bb-config.php does
define(&#39;BBDB_COLLATE&#39;, &#39;&#39;);          // not have these two contstants in them, DO NOT define them
                                     // If you are installing for the first time, leave them here

// Change BB_SECRET_KEY to a unique phrase.  You won&#39;t have to remember it later,
// so make it long and complicated.  You can visit <a href="https://www.grc.com/passwords.htm" rel="nofollow">https://www.grc.com/passwords.htm</a>
// to get a phrase generated for you, or just make something up.
// If you are integrating logins with WordPress, you will need to match the value
// of the &#34;SECRET_KEY&#34; in the WordPress file wp-config.php
define(&#39;BB_AUTH_KEY&#39;, &#39;7k67k67k76&#39;); // Change this to a unique phrase.
define(&#39;BB_SECURE_AUTH_KEY&#39;, &#39;67k67k76k67k76&#39;); // Change this to a unique phrase.
define(&#39;BB_LOGGED_IN_KEY&#39;, &#39;67k76&#39;); // Change this to a unique phrase.
define(&#39;BB_SECRET_KEY&#39;, &#39;thisisone{crazy}sectret9084biugfhKey&#39;); // Change this to a unique phrase.

// If you are running multiple bbPress installations in a single database,
// you will probably want to change this.
$bb_table_prefix = &#39;bb_&#39;; // Only letters, numbers and underscores please!

// Change this to localize bbPress.  A corresponding MO file for the
// chosen language must be installed to bb-includes/languages.
// For example, install de.mo to bb-includes/languages and set BB_LANG to &#39;de&#39;
// to enable German language support.
define(&#39;BB_LANG&#39;, &#39;&#39;);

/* Stop editing */

if ( !defined(&#39;BB_PATH&#39;) )
	define(&#39;BB_PATH&#39;, dirname(__FILE__) . &#39;/&#39; );
require_once( BB_PATH . &#39;bb-settings.php&#39; );

// The rest is only useful if you are integrating bbPress with WordPress.
// If you&#39;re not, just leave the rest as it is.

$bb-&#62;wp_table_prefix = &#39;wp_econome&#39;;  // WordPress table prefix.  Example: &#39;wp_&#39;;
$bb-&#62;wp_home = &#39;http://www.fabuso.com/starteconome/blog&#39;;  // WordPress - Options-&#62;General: Blog address (URL) // Example: &#39;http://example.com&#39;
$bb-&#62;wp_siteurl = &#39;http://www.fabuso.com/starteconome/blog&#39;;  // WordPress - Options-&#62;General: WordPress address (URL) // Example: &#39;http://example.com&#39;

$bb-&#62;usercookie = &#39;wordpress_logged_in_my has here&#39;;
$bb-&#62;passcookie = &#39;wordpress_logged_in_my has here&#39;;
$bb-&#62;cookiedomain = &#39;fabuso.com&#39;;
$bb-&#62;cookiepath = &#39;/&#39;;

?&#62;</code></pre>
<p>wp-config.php<br />
<pre><code>&#60;?php
// ** MySQL settings ** //
removed for security

// Change each KEY to a different unique phrase.  You won&#39;t have to remember the phrases later,
// so make them long and complicated.  You can visit <a href="http://api.wordpress.org/secret-key/1.1/" rel="nofollow">http://api.wordpress.org/secret-key/1.1/</a>
// to get keys generated for you, or just make something up.  Each key should have a different phrase.
define(&#39;AUTH_KEY&#39;, &#39;7k67k67k76&#39;); // Change this to a unique phrase.
define(&#39;SECURE_AUTH_KEY&#39;, &#39;67k67k76k67k76&#39;); // Change this to a unique phrase.
define(&#39;LOGGED_IN_KEY&#39;, &#39;67k76&#39;); // Change this to a unique phrase.
define(&#39;SECRET_KEY&#39;, &#39;thisisone{crazy}sectret9084biugfhKey&#39;);
define(&#39;COOKIE_DOMAIN&#39;, &#39;fabuso.com&#39;);
define(&#39;COOKIEPATH&#39;, &#39;/&#39;);

$wp-&#62;cookiepath = &#39;/&#39;;
$wp-&#62;sitecookiepath = &#39;/&#39;;
define(&#39;SITECOOKIEPATH&#39;, &#39;/&#39;);

// You can have multiple installations in one database if you give each a unique prefix
$table_prefix  = &#39;wp_econome_&#39;;   // Only numbers, letters, and underscores please!

// Change this to localize WordPress.  A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to &#39;de&#39;
// to enable German language support.
define (&#39;WPLANG&#39;, &#39;&#39;);

/* That&#39;s all, stop editing! Happy blogging. */

if ( !defined(&#39;ABSPATH&#39;) )
	define(&#39;ABSPATH&#39;, dirname(__FILE__) . &#39;/&#39;);
require_once(ABSPATH . &#39;wp-settings.php&#39;);
?&#62;</code></pre>]]></description>
					</item>
		<item>
			<title>harryworld on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-14369</link>
			<pubDate>Sun, 09 Mar 2008 12:27:24 +0000</pubDate>
			<dc:creator>harryworld</dc:creator>
			<guid isPermaLink="false">14369@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Sorry for misleading.<br />
I mean I got a similar case as you do, thus case 2</p>
<p>and thanks for the link.
</p>]]></description>
					</item>
		<item>
			<title>horrorshow on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-14341</link>
			<pubDate>Fri, 07 Mar 2008 18:53:40 +0000</pubDate>
			<dc:creator>horrorshow</dc:creator>
			<guid isPermaLink="false">14341@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Funny that my settings are screwy and there are better ways at accomplishing single sign on?<br />
Or funny: "yes, this is the closest that I am able to get to single sign-on,  and I get the same results"?</p>
<p>If it's the first case, then please enlighten me.<br />
If it's the second case, then this link might help you.<br />
<a href="http://bbpress.org/forums/topic/cookies-subtle-bug-single-sign-on-bbpress-and-wordpress" rel="nofollow">http://bbpress.org/forums/topic/cookies-subtle-bug-single-sign-on-bbpress-and-wordpress</a>
</p>]]></description>
					</item>
		<item>
			<title>harryworld on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-14327</link>
			<pubDate>Fri, 07 Mar 2008 09:09:30 +0000</pubDate>
			<dc:creator>harryworld</dc:creator>
			<guid isPermaLink="false">14327@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>horrowshow,</p>
<p>I tried your settings, and it's funny that if you login on either on side, you cannot log out on the other side.</p>
<p>If I login WPMU first, I can only logout through WPMU.
</p>]]></description>
					</item>
		<item>
			<title>horrorshow on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-14246</link>
			<pubDate>Mon, 03 Mar 2008 21:45:05 +0000</pubDate>
			<dc:creator>horrorshow</dc:creator>
			<guid isPermaLink="false">14246@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi,<br />
I am trying to integrate bbpress(0.8.3.1) with wordpress mu (1.3.3), and I am having some issues with cookies for login/logout.</p>
<p>I've tried setting this: ("MD5hash" replaced with my MD5)</p>
<pre><code>$bb-&#62;usercookie = &#39;wordpressuser_MD5hash&#39;;
$bb-&#62;passcookie = &#39;wordpresspass_MD5hash&#39;;</code></pre>
<p>However, that didn't seem to synchronize login(meaning, if I am log into wp, go to bbpress and find myself already logged and vice versa)</p>
<p>Watching the cookies during the login/out process on WP MU, I found that the cookie names that WP MU uses are: "wordpresspass" and "wordpressuser"<br />
So in config.php for bbpress, I used:<br />
<pre><code>$bb-&#62;usercookie = &#39;wordpressuser&#39;;
$bb-&#62;passcookie = &#39;wordpresspass&#39;;</code></pre>
<p>This works somewhat, let me explain:<br />
This scenario works:<br />
Log into WPMU, refresh bbpress page, I find myself already logged into bbpress.<br />
Log out of WPMU, refresh bbpress page, I find myself logged out of bbpress.<br />
Log into BBpress, refresh WPMU, I find myself logged into WPMU</p>
<p>This doesn't work:<br />
Log into BBpress, refresh WPMU (I find myself logged into WPMU) AND THEN when I try to log out from WPMU, I can't log out.<br />
I refresh BBpress page, and I am not logged out either.<br />
If I log out from BBpress at this point, then I am logged out of WPMU as well.</p>
<p>I have a feeling it might be something with WPMU, but I thought I'd post here first since this is where I found all the information about the integration.  Thanks for your help.  I am appending my config.php relevant to the integration part.<br />
<pre><code>$bb-&#62;wp_table_prefix = &#39;wp_&#39;;
$bb-&#62;wp_home = &#39;http://achillesblog.com&#39;;
$bb-&#62;wp_siteurl = &#39;http://achillesblog.com&#39;;
$bb-&#62;usercookie = &#39;wordpressuser&#39;;
$bb-&#62;passcookie = &#39;wordpresspass&#39;;
$bb-&#62;cookiepath = &#39;/&#39;;</code></pre>
<p>thanks for your help.
</p>]]></description>
					</item>
		<item>
			<title>petitpoulain on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-11438</link>
			<pubDate>Mon, 15 Oct 2007 14:16:26 +0000</pubDate>
			<dc:creator>petitpoulain</dc:creator>
			<guid isPermaLink="false">11438@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>how i discover my MD5?
</p>]]></description>
					</item>
		<item>
			<title>themesbycal on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-11375</link>
			<pubDate>Wed, 10 Oct 2007 18:41:53 +0000</pubDate>
			<dc:creator>themesbycal</dc:creator>
			<guid isPermaLink="false">11375@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks schmitt, got it working without too much trouble.
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-11371</link>
			<pubDate>Wed, 10 Oct 2007 16:25:19 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">11371@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>MD5 is unique to the website URL... not the user.
</p>]]></description>
					</item>
		<item>
			<title>themesbycal on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-10904</link>
			<pubDate>Tue, 11 Sep 2007 04:14:08 +0000</pubDate>
			<dc:creator>themesbycal</dc:creator>
			<guid isPermaLink="false">10904@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey guys, I got a question about the MD5 hash.....</p>
<p>I don't understand which MD5 to use... Every user has a different hash right? So which one do I enter?</p>
<p>Can anyone try and clarify this for me, I almost got it working....
</p>]]></description>
					</item>
		<item>
			<title>fel64 on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9037</link>
			<pubDate>Tue, 17 Jul 2007 18:58:40 +0000</pubDate>
			<dc:creator>fel64</dc:creator>
			<guid isPermaLink="false">9037@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><em>This means their bbpress login will mysteriously fail.</em></p>
<p>No it won't. No matter what cookies users have, they will not prevent them logging in.</p>
<p>schmitt, must say I really liked your site.  Not at all interested in things financial but it was engaging nonetheless.</p>
<p>You could put these lines at the top of your bb-login.php:<br />
<pre><code>header(&#39;Location: <a href="http://www.example.com/&#039;)" rel="nofollow">http://www.example.com/&#039;)</a>;
exit;</code></pre>
<p>Obviously changing the URL to that of your wp-login.php. I don't know how else you'd do that. This may have all sorts of crazy adverse effects because I haven't tried it myself; maybe ck can say how he did it?
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9024</link>
			<pubDate>Tue, 17 Jul 2007 13:30:43 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">9024@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Yes, but users reading the above... make sure to replace the MD5 hash with the one from your site. Do not simply cut and paste.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9010</link>
			<pubDate>Tue, 17 Jul 2007 05:17:24 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">9010@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There is an obscure cookie control plugin for wordpress that I found somewhere around here I think:<br />
<a href="http://www.2diabolos.com/blog/plugins-pour-wordpress/setcookieparams/" rel="nofollow">http://www.2diabolos.com/blog/plugins-pour-wordpress/setcookieparams/</a></p>
<p>the bbpress config options you want are like this:<br />
<pre><code>$bb-&#62;wp_table_prefix = &#39;wp_&#39;;  // WordPress table prefix.  Example: &#39;wp_&#39;;
$bb-&#62;wp_home = &#39;http://example.com/blog&#39;;  // WordPress - Options-&#62;General: Blog address (URL) // Example: &#39;http://example.com&#39;
$bb-&#62;wp_siteurl = &#39;http://example.com&#39;;  // WordPress - Options-&#62;General: WordPress address (URL) // Example: &#39;http://example.com&#39;

$bb-&#62;usercookie = &#39;wordpressuser_ab1b1c8b2de0ca2b381c25a6b6e812a1&#39;;
$bb-&#62;passcookie = &#39;wordpresspass_ab1b1c8b2de0ca2b381c25a6b6e812a1&#39;;
$bb-&#62;cookiedomain = &#39;example.com&#39;;
$bb-&#62;cookiepath = &#39;/&#39;;</code></pre>
<p>you also obviously want this plugin:<br />
<a href="http://bbpress.org/plugins/topic/2?replies=3" rel="nofollow">http://bbpress.org/plugins/topic/2?replies=3</a></p>
<p>and less obviously this one is a must for WP integration:<br />
<a href="http://bbpress.org/forums/topic/usernames-with-spaces-do-not-work?replies=24#post-7904" rel="nofollow">http://bbpress.org/forums/topic/usernames-with-spaces-do-not-work?replies=24#post-7904</a><br />
unfortunately it's not setup here as a formal plugin but it should be - see my dot fix at the end
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9008</link>
			<pubDate>Tue, 17 Jul 2007 04:42:22 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">9008@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Next step will be this...</p>
<blockquote><p>I also went a step further and routed all the login links on bbpress back to the wordpress login box since it has a few extra features. I use the redirect_to option to bring them back to bbpress.
</p></blockquote>
<p>I'll search the forum but any guidance is appreciated.
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9007</link>
			<pubDate>Tue, 17 Jul 2007 04:36:10 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">9007@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>OK, feeling pretty stupid now.</p>
<p>I used the first suggestion:</p>
<p>$bb-&#62;usercookie = 'wordpressuser_full.hash.number';<br />
$bb-&#62;passcookie = 'wordpresspass_full.hash.number';</p>
<p>Except this time I replaced it with my actual MD5. DUH!!!</p>
<p>$bb-&#62;usercookie = 'wordpressuser_ed93838a3c2677b2a3d53669c26b039b';<br />
$bb-&#62;passcookie = 'wordpresspass_ed93838a3c2677b2a3d53669c26b039b';</p>
<p>Things working smoothly now. Thank you for your help and I hope this thread helps someone else.
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9005</link>
			<pubDate>Tue, 17 Jul 2007 04:29:31 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">9005@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Everything  _ck_ mentions is what I want to do.
</p>]]></description>
					</item>
		<item>
			<title>Trent Adams on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9004</link>
			<pubDate>Tue, 17 Jul 2007 04:12:26 +0000</pubDate>
			<dc:creator>Trent Adams</dc:creator>
			<guid isPermaLink="false">9004@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I think we should write up a massive thread on all the things to do for proper integration since there are bits and pieces that work for most people all over this forum.</p>
<p>Trent
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9003</link>
			<pubDate>Tue, 17 Jul 2007 04:10:38 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">9003@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Remember that many users will already have the "remember me" set for their cookie on wordpress and that doesn't expire for a year. This means their bbpress login will mysteriously fail. They'll either give up or re-register a new nickname.</p>
<p>You also need the space and period plugin fix for names. WordPress allows them, bbpress doesn't by default. So anyone with a space or period in their nickname will fail logging into bbPress. Not knowing such things can drive you mad.</p>
<p>I also went a step further and routed all the login links on bbpress back to the wordpress login box since it has a few extra features. I use the redirect_to option to bring them back to bbpress.</p>
<p>ps. another good integration thread for a future integration sub-forum
</p>]]></description>
					</item>
		<item>
			<title>Trent Adams on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9002</link>
			<pubDate>Tue, 17 Jul 2007 04:00:57 +0000</pubDate>
			<dc:creator>Trent Adams</dc:creator>
			<guid isPermaLink="false">9002@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Most just work with defining the wordpress part of the config.php and some need to play around.    As well, there is always defining the cookie domain from <a href="http://bbpress.org/forums/topic/cookie-domain-settings?replies=4" rel="nofollow">http://bbpress.org/forums/topic/cookie-domain-settings?replies=4</a></p>
<p>Trent
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9001</link>
			<pubDate>Tue, 17 Jul 2007 03:58:22 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">9001@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I still have the cookiepath variable set... can I remove that?
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-9000</link>
			<pubDate>Tue, 17 Jul 2007 03:57:30 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">9000@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Now I can't log in to BBPress. Changing the config.php back.</p>
<p>Is there something atypical about my install that is creating the problem. How can I just conform to the norm?
</p>]]></description>
					</item>
		<item>
			<title>Trent Adams on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8997</link>
			<pubDate>Tue, 17 Jul 2007 03:52:45 +0000</pubDate>
			<dc:creator>Trent Adams</dc:creator>
			<guid isPermaLink="false">8997@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Darn copy and paste....;) </p>
<p>Trent
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8996</link>
			<pubDate>Tue, 17 Jul 2007 03:50:31 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">8996@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I assume you mean....</p>
<p>$bb-&#62;usercookie = 'wordpressuser_full.hash.number';<br />
$bb-&#62;passcookie = 'wordpresspass_full.hash.number';</p>
<p>double quotes at end changed to single. Trying now.
</p>]]></description>
					</item>
		<item>
			<title>Trent Adams on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8992</link>
			<pubDate>Tue, 17 Jul 2007 03:36:13 +0000</pubDate>
			<dc:creator>Trent Adams</dc:creator>
			<guid isPermaLink="false">8992@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Try adding the following to your bbPress config.php:</p>
<pre><code>$bb-&#62;usercookie = &#39;wordpressuser_full.hash.number&#34;;
$bb-&#62;passcookie = &#39;wordpresspass_full.hash.number&#34;;</code></pre>
<p>Trent
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8987</link>
			<pubDate>Tue, 17 Jul 2007 03:00:49 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">8987@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I think I see the problem now. BBPress is setting a different MD5 hash than wordpress. This must have to do with the fact it is installed in the subdirectory. Why is my install generating the wrong hash...</p>
<p>My config.php is set up as above. Ive pasted it below. I included the full URL coding where as you used only the <a href="http://www.xxxx.xxxx" rel="nofollow">http://www.xxxx.xxxx</a> - I can't imagine that makes a difference.</p>
<p>$bb-&#62;wp_table_prefix = 'wp_';  // WordPress table prefix.  Example: 'wp_';<br />
$bb-&#62;wp_home = 'http://www.nyquistcapital.com/';  // WordPress - Options-&#62;General: Blog address (URL) // Example: 'http://example.com'<br />
$bb-&#62;wp_siteurl = 'http://www.nyquistcapital.com/';  // WordPress - Options-&#62;General: WordPress address (URL) // Example: 'http://example.com'</p>
<p>$bb-&#62;cookiepath = '/'; // Added per BBPress Forum Suggestion to ensure WordPress user sharing</p>
<p>--------------------------</p>
<p>wordpressuser_ed93838a3c2677b2a3d53669c26b039b<br />
Path: /<br />
Content:admin</p>
<p>wordpresspass_ed93838a3c2677b2a3d53669c26b039b<br />
Path:/<br />
Content:&#60;HASH&#62;</p>
<p>And for BBPress<br />
wordpressuser_34c5633735768bf923be82cd0042b16a<br />
Path: /<br />
Content:admin</p>
<p>wordpresspass_34c5633735768bf923be82cd0042b16a<br />
Path:/<br />
Content:&#60;HASH&#62;
</p>]]></description>
					</item>
		<item>
			<title>fel64 on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8984</link>
			<pubDate>Tue, 17 Jul 2007 02:30:35 +0000</pubDate>
			<dc:creator>fel64</dc:creator>
			<guid isPermaLink="false">8984@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Expected behaviour is that signing into one will sign you into the other.</p>
<p>Can you please do the following:</p>
<p>Clear your cookies.<br />
Log into wordpress and record what cookies are set, including domain and path (properties of each cookie).<br />
Clear your cookies again.<br />
Log into bb. Again record the cookies set. Are you logged into wp?<br />
Tell us the cookies set from each case.
</p>]]></description>
					</item>
		<item>
			<title>schmitt on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8983</link>
			<pubDate>Tue, 17 Jul 2007 02:24:16 +0000</pubDate>
			<dc:creator>schmitt</dc:creator>
			<guid isPermaLink="false">8983@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I did the original install as Trent specified above. I also added in fel64's suggestion. I didn't see any changes in the behavior as a result.</p>
<p>Let me reiterate. BBPress and WOrdpress are sharing a user database now. I can sign into BBPress using the name/pw combo of any existing WordPress user.</p>
<p>What I expected though, is that a user already signed into WordPress would transition into BBPress (for the first time, as a new user) and automatically be logged in. Currently, they need to relogin using the same WordPress username and password.</p>
<p>Which behavior should be expected? I am looking for a seamless addition of forums for my existing client base....</p>
<p>Thanks for the great help.
</p>]]></description>
					</item>
		<item>
			<title>fel64 on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8978</link>
			<pubDate>Mon, 16 Jul 2007 23:30:03 +0000</pubDate>
			<dc:creator>fel64</dc:creator>
			<guid isPermaLink="false">8978@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You may have to add<br />
<pre><code>$bb-&#62;cookiepath = &#39;/&#39;;</code></pre>
<p>to your config.php if it doesn't work straight away.
</p>]]></description>
					</item>
		<item>
			<title>Trent Adams on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on#post-8977</link>
			<pubDate>Mon, 16 Jul 2007 23:16:18 +0000</pubDate>
			<dc:creator>Trent Adams</dc:creator>
			<guid isPermaLink="false">8977@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If you have the same domain so it should be simple.   Keep in mind that bbPress will use the WP users after doing this and both programs have to be installed in the same database:</p>
<pre><code>// The rest is only useful if you are integrating bbPress with WordPress.
// If you&#39;re not, just leave the rest as it is.

$bb-&#62;wp_table_prefix = &#39;wp_&#39;;  // WordPress table prefix.  Example: &#39;wp_&#39;;
$bb-&#62;wp_home = <a href="http://www.nyquistcapital.com&#039;" rel="nofollow">http://www.nyquistcapital.com&#039;</a>;  // WordPress - Options-&#62;General: Blog address (URL) // No trailing slash.  Example: &#39;http://example.com&#39;
$bb-&#62;wp_siteurl = &#39;www.nyquistcapital.com&#39;;  // WordPress - Options-&#62;General: WordPress address (URL) // No trailing slash. Example: &#39;http://example.com&#39;</code></pre>
<p>Trent
</p>]]></description>
					</item>

	</channel>
</rss>

