<?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 integration, login/logout not sticking</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: WPMU integration, login/logout not sticking</description>
<language>en</language>
<pubDate>Fri, 21 Nov 2008 01:23:47 +0000</pubDate>

<item>
<title>flufftronix on "WPMU integration, login/logout not sticking"</title>
<link>http://bbpress.org/forums/topic/wpmu-integration-loginlogout-not-sticking#post-1030</link>
<pubDate>Fri, 03 Nov 2006 10:11:12 +0000</pubDate>
<dc:creator>flufftronix</dc:creator>
<guid isPermaLink="false">1030@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh; hmm I think I may have muddled up some of the domain names in the config file..&#60;/p&#62;
&#60;p&#62;edit: yup! everything's all peachy. now, back to scratching my head at the site-wide tags problem like everyone else..
&#60;/p&#62;</description>
</item>
<item>
<title>suleiman on "WPMU integration, login/logout not sticking"</title>
<link>http://bbpress.org/forums/topic/wpmu-integration-loginlogout-not-sticking#post-1024</link>
<pubDate>Fri, 03 Nov 2006 07:26:25 +0000</pubDate>
<dc:creator>suleiman</dc:creator>
<guid isPermaLink="false">1024@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Try the following:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
// ** MySQL settings ** //&#60;br /&#62;
define('BBDB_NAME', 'bbpress_dbname'); // The name of the database&#60;br /&#62;
define('BBDB_USER', 'bbpress_username'); // Your MySQL username&#60;br /&#62;
define('BBDB_PASSWORD', 'password'); // ...and password&#60;br /&#62;
define('BBDB_HOST', 'localhost'); // 99% chance you won't need to change this value&#60;/p&#62;
&#60;p&#62;define('USER_BBDB_NAME', 'wpmu_db_name)'); //your WPMU DB name&#60;br /&#62;
define('USER_BBDB_USER', 'wpmu_db_username'); // Your WPMU DB username&#60;br /&#62;
define('USER_BBDB_PASSWORD', 'password'); // ...and password&#60;br /&#62;
define('USER_BBDB_HOST', 'localhost');&#60;/p&#62;
&#60;p&#62;// Change the prefix if you want to have multiple forums in a single database.&#60;br /&#62;
$bb_table_prefix = 'bb_'; // Only letters, numbers and underscores please!&#60;/p&#62;
&#60;p&#62;define('CUSTOM_USER_TABLE', 'wp_users');&#60;br /&#62;
define('CUSTOM_USER_META_TABLE', 'wp_usermeta');&#60;/p&#62;
&#60;p&#62;// If your bbPress URL is &#60;a href=&#34;http://bbpress.example.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.example.com/forums/&#60;/a&#62; , the examples would be correct.&#60;br /&#62;
// Adjust the domain and path to suit your actual URL.&#60;br /&#62;
// Just the domain name; no directories or path. There should be no trailing slash here.&#60;br /&#62;
$bb-&#38;gt;domain = 'http://hadithuna.com'; // Example: 'http://bbpress.example.com'&#60;br /&#62;
// There should be both a leading and trailing slash here. '/' is fine if the site is in root.&#60;br /&#62;
$bb-&#38;gt;path = '/forums/';	 // Example: '/forums/'&#60;/p&#62;
&#60;p&#62;// What are you going to call me?&#60;br /&#62;
$bb-&#38;gt;name = 'Hadithuna Communnity Forums';&#60;/p&#62;
&#60;p&#62;// This must be set before running the install script.&#60;br /&#62;
$bb-&#38;gt;admin_email = 'webmaster@hadithuna.com';&#60;/p&#62;
&#60;p&#62;// Set to true if you want pretty permalinks.&#60;br /&#62;
$bb-&#38;gt;mod_rewrite = false;&#60;/p&#62;
&#60;p&#62;// The number of topics that show on each page.&#60;br /&#62;
$bb-&#38;gt;page_topics = 30;&#60;/p&#62;
&#60;p&#62;// A user can edit a post for this many minutes after submitting.&#60;br /&#62;
$bb-&#38;gt;edit_lock = 60;&#60;/p&#62;
&#60;p&#62;// Your timezone offset. Example: -7 for Pacific Daylight Time.&#60;br /&#62;
$bb-&#38;gt;gmt_offset = 0;&#60;/p&#62;
&#60;p&#62;// Change this to localize bbPress. A corresponding MO file for the&#60;br /&#62;
// chosen language must be installed to bb-includes/languages.&#60;br /&#62;
// For example, install de.mo to bb-includes/languages and set BBLANG to 'de'&#60;br /&#62;
// to enable German language support.&#60;br /&#62;
define('BBLANG', '');&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;usercookie = 'wordpressuser';&#60;br /&#62;
$bb-&#38;gt;passcookie = 'wordpresspass';&#60;br /&#62;
$bb-&#38;gt;cookiedomain = 'hadithuna.com'; // or .example.com if there was a . above&#60;br /&#62;
$bb-&#38;gt;cookiepath = '/';&#60;/p&#62;
&#60;p&#62;// Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage&#60;br /&#62;
// of Akismet's powerful spam blocking, you'll need one. You can get an Akismet key at&#60;br /&#62;
// &#60;a href=&#34;http://wordpress.com/api-keys/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.com/api-keys/&#60;/a&#62;&#60;br /&#62;
$bb-&#38;gt;akismet_key = false;&#60;/p&#62;
&#60;p&#62;// define('CUSTOM_USER_TABLE', 'wp_users');&#60;/p&#62;
&#60;p&#62;// The rest is only useful if you are integrating bbPress with WordPress.&#60;br /&#62;
// If you're not, just leave the rest as it is.&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;wp_table_prefix = false; // WordPress table prefix. Example: 'wp_';&#60;br /&#62;
$bb-&#38;gt;wp_home = false; // WordPress - Options-&#38;gt;General: Blog address (URL) // No trailing slash&#60;br /&#62;
$bb-&#38;gt;wp_siteurl = false; // WordPress - Options-&#38;gt;General: WordPress address (URL) // No trailing slash&#60;/p&#62;
&#60;p&#62;/* Stop editing */&#60;/p&#62;
&#60;p&#62;define('BBPATH', dirname(__FILE__) . '/' );&#60;br /&#62;
require_once( BBPATH . 'bb-settings.php' );&#60;br /&#62;
?&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>flufftronix on "WPMU integration, login/logout not sticking"</title>
<link>http://bbpress.org/forums/topic/wpmu-integration-loginlogout-not-sticking#post-1020</link>
<pubDate>Fri, 03 Nov 2006 04:10:24 +0000</pubDate>
<dc:creator>flufftronix</dc:creator>
<guid isPermaLink="false">1020@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi there, I've scoured the boards here for a solution to this issue but have only thus far found another instance of the problem. I'm running a WPMU install &#60;a href=&#34;http://crimethinc.flufftronix.com&#34;&#62;here&#60;/a&#62; and a bbPress install &#60;a href=&#34;http://crimethinc.flufftronix.com/board&#34;&#62;here&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Everything seems to be working fine, short URL's included, except for user authentication. I can only login through Wordpress. Login attempts through bbPress fail with incorrect account info, but don't do anything with a correct user/pw combination either. WPMU is creating a cookie that bbPress uses, but bbPress seems to be incapable of creating that same cookie I think? Or..? Any ideas?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
