<?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: livibetter</title>
		<link>http://bbpress.org/forums/profile/</link>
		<description>bbPress Support Forums &#187; User Favorites: livibetter</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 14:17:15 +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>timskii on "Adding a new User Type"</title>
			<link>http://bbpress.org/forums/topic/adding-a-new-user-type#post-36316</link>
			<pubDate>Mon, 01 Jun 2009 17:51:21 +0000</pubDate>
			<dc:creator>timskii</dc:creator>
			<guid isPermaLink="false">36316@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Fel's code works for 0.9.x. My code works for 1.0.</p>
<p>Worth making clear that 0.9 code will stop working once you upgrade  to 1.0: Users with bespoke roles loose their capabilities, although those old roles do remain in the database, so can be found by new code.
</p>]]></description>
					</item>
		<item>
			<title>Michael3185 on "Adding a new User Type"</title>
			<link>http://bbpress.org/forums/topic/adding-a-new-user-type#post-36313</link>
			<pubDate>Mon, 01 Jun 2009 17:12:08 +0000</pubDate>
			<dc:creator>Michael3185</dc:creator>
			<guid isPermaLink="false">36313@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I like the idea of roles, but am using the latest stable release 0.9.0.4  Nobody's said here which version this attempt at role creation is for..?
</p>]]></description>
					</item>
		<item>
			<title>timskii on "Adding a new User Type"</title>
			<link>http://bbpress.org/forums/topic/adding-a-new-user-type#post-36309</link>
			<pubDate>Mon, 01 Jun 2009 14:58:22 +0000</pubDate>
			<dc:creator>timskii</dc:creator>
			<guid isPermaLink="false">36309@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>In 1.0 Release Candidate 1, roles change dramatically from 0.9.x. I appreciate there is <a href="http://bbpress.org/plugins/topic/role-manager/">Role Manager</a>, but I wanted a simple fix for an existing tweak based on Fel's original code.</p>
<p>The code below creates a new role, adds capabilities that mimic the 'member' role, plus extra capabilities you specify. </p>
<pre><code>global $bb_roles; // Get the master list of roles
$key = &#39;role_internal_name&#39;; // Edit: Name of new role, as used internally by BBPress
$name = __(&#39;Role Public Name&#39;); // Edit: Name of new role, as shown in public
$cap = array ( &#39;view_by_ip&#39;, ); // Edit: Add extra capabilities within this array. Must be pre-defined capabilities. Empty if you just wish to apply member capabilities.
$r = new BP_Role(); // New role class
$r-&#62;name = $key; // Assign the internal name
$r-&#62;capabilities = $bb_roles-&#62;role_objects[ &#39;member&#39; ]-&#62;capabilities; // Copies member capabilities to the new role
foreach ( $cap as $add ) $r-&#62;capabilities[ $add ] = 1; // Adds extra capabilities
$bb_roles-&#62;role_objects[ $key ] = $r; // Adds the new role to $bb_roles
$bb_roles-&#62;role_names[ $key ] = $name; // Adds the new role to the list of role names</code></pre>
<p>Hooked using: add_action/add_filter( 'bb_got_roles',  'my_function_name' ); </p>
<p>I have no idea whether this is the most efficient way of doing this. So I'd welcome improvements.
</p>]]></description>
					</item>
		<item>
			<title>FirstAngel on "Adding a new User Type"</title>
			<link>http://bbpress.org/forums/topic/adding-a-new-user-type#post-27155</link>
			<pubDate>Sat, 18 Apr 2009 14:55:03 +0000</pubDate>
			<dc:creator>FirstAngel</dc:creator>
			<guid isPermaLink="false">27155@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I have saved, uploaded, activated.  No new membergroup anywhere :(
</p>]]></description>
					</item>
		<item>
			<title>lelandf on "Adding a new User Type"</title>
			<link>http://bbpress.org/forums/topic/adding-a-new-user-type#post-24958</link>
			<pubDate>Fri, 20 Mar 2009 23:33:22 +0000</pubDate>
			<dc:creator>lelandf</dc:creator>
			<guid isPermaLink="false">24958@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Okay, it took me a couple hours but I finally got this to work (sorta) using a variation of fel64's code.  I was using it to create a special usergroup with the same capabilities as regular members for use with the Hidden Forums plugin.</p>
<p>The original code kinda worked, because it <em>did</em> create a new user group with the name I had chosen.  I soon realized, however, the users in the user group I made <strong>had no capabilities</strong> and therefore couldn't post, edit their profile at all, etc.  I was expecting they would have the same capabilities as members.</p>
<p>So I made a few changes and...here's the plugin code I used:</p>
<pre><code>&#60;?php
/*
Plugin Name: Add lusers
Description: adds the luser role
Author: fel64
*/

add_filter(&#39;get_roles&#39;, &#39;addlusers&#39;);

function addlusers( $roles ) {
$roles[&#39;luser&#39;] =&#38; $luser; //convenience
$luser[&#39;name&#39;] = __(&#39;Luser&#39;);
$lusercaps = array(&#39;participate&#39;,&#39;edit_favorites&#39;,&#39;edit_tags&#39;,&#39;edit_topics&#39;,&#39;edit_posts&#39;,&#39;edit_profile&#39;,&#39;write_topics&#39;,&#39;write_posts&#39;,&#39;change_password&#39;,&#39;read&#39;);
foreach( $lusercaps AS $cap ) {
$luser[&#39;capabilities&#39;][$cap] = true;
}
return $roles;
}
?&#62;</code></pre>
<p>Basically I removed the first line of the function, because for some reason it wasn't working.  I then copied all the capabilities of a regular member in an array format.  You can get other capabilities (like for moderators, admins, and key masters) from the capabilities.php file in /bb-includes/.</p>
<p>Just save the code in a .php file and upload it to your plugins folder and activate.  You would also probably want to change the "Luser" name to something else.</p>
<p>Now I know this probably isn't the best way to do it, but it worked for me, so I thought I'd share it here.  Hopefully some of you get some use out of it.
</p>]]></description>
					</item>
		<item>
			<title>SteveG190 on "Adding a new User Type"</title>
			<link>http://bbpress.org/forums/topic/adding-a-new-user-type#post-24896</link>
			<pubDate>Thu, 19 Mar 2009 15:13:41 +0000</pubDate>
			<dc:creator>SteveG190</dc:creator>
			<guid isPermaLink="false">24896@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've tried using fel64's method above but I'm not able to make it work at all, so I thought I would try something different. Since he mentioned using the <code>$bb_roles-&#62;add_role()</code> that already exists in <code>functions.bb-capabilites.php</code> I thought I could work with that. Bascially, I want to put my own additions and modified base roles (aside from admin and keymaster, obviously) into a plugin that replaces the existing roles function. I've sucessfuly done this via a dirty hack of the core file but I'd really love to migrate my changes to a plugin.</p>
<p>Is it not possible to just do bascially a copy-paste of the <code>bb_init_roles</code> function from <code>functions.bb-capabilites.php</code>, rename it, make new roles and modify existing ones, then use something like <code>add_filter(&#39;init_roles&#39;,&#39;my_bb_init_roles&#39;)</code> to hook it to <code>init_roles</code>? Obviously I'm a complete noob to this since my attempts are completely failing and what I know is just scraped together from looking at other plugins and some limited reading on making WordPress plugins. Any assistance here would be greatly appreciated.
</p>]]></description>
					</item>
		<item>
			<title>meinwalter on "Adding a new User Type"</title>
			<link>http://bbpress.org/forums/topic/adding-a-new-user-type#post-24276</link>
			<pubDate>Tue, 24 Feb 2009 17:32:08 +0000</pubDate>
			<dc:creator>meinwalter</dc:creator>
			<guid isPermaLink="false">24276@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>"Then go to the members' profiles and make them all lusers."</p>
<p>after i have activated the plugin i can not select luser. What to do?
</p>]]></description>
					</item>
		<item>
			<title>Anonymous on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-17498</link>
			<pubDate>Tue, 22 Jul 2008 00:07:19 +0000</pubDate>
			<dc:creator>Anonymous</dc:creator>
			<guid isPermaLink="false">17498@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hi my server does not have a smtp server is there anyone here who do have something for this? Maybe a plugin where the password can be shown after the registration is made</p>
<p>Thanks
</p>]]></description>
					</item>
		<item>
			<title>so1o on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-16270</link>
			<pubDate>Fri, 16 May 2008 01:49:48 +0000</pubDate>
			<dc:creator>so1o</dc:creator>
			<guid isPermaLink="false">16270@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>ok.. here it is<br />
<a href="http://bbpress.org/plugins/topic/approve-user-registration/" rel="nofollow">http://bbpress.org/plugins/topic/approve-user-registration/</a>
</p>]]></description>
					</item>
		<item>
			<title>so1o on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15867</link>
			<pubDate>Tue, 29 Apr 2008 20:26:15 +0000</pubDate>
			<dc:creator>so1o</dc:creator>
			<guid isPermaLink="false">15867@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>i have created the plugin.. people willing to test the plugin out for me please mail me.. aditya at adityanaik point com.</p>
<p>oh by the way if any one wants to pay me.. by all means :)</p>
<p>cheers
</p>]]></description>
					</item>
		<item>
			<title>citizenkeith on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15841</link>
			<pubDate>Mon, 28 Apr 2008 16:22:51 +0000</pubDate>
			<dc:creator>citizenkeith</dc:creator>
			<guid isPermaLink="false">15841@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Perhaps we can pool some cash together and pay somebody to write it?
</p>]]></description>
					</item>
		<item>
			<title>monstr on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15837</link>
			<pubDate>Mon, 28 Apr 2008 12:34:41 +0000</pubDate>
			<dc:creator>monstr</dc:creator>
			<guid isPermaLink="false">15837@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hm. i'd also like to have such a function... perhaps anyone will code it some time. i don't think it's that complicated.. :/
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15500</link>
			<pubDate>Fri, 18 Apr 2008 07:02:29 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">15500@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Sounds like you need authorization before accessing the board, rather than leaving the board open to anyone who happens to run across it.  If it's publicly accessible, you might want to do something like require authorization to even load the board.  You don't want staff waiting for you to approve their registration and you don't want people accessing the board if it's not for their eyes.</p>
<p>If you're on an Apache web server, you want to look up "basic auth", .htpasswd and .htaccess if you want to do this.
</p>]]></description>
					</item>
		<item>
			<title>myeggnoodles on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15496</link>
			<pubDate>Fri, 18 Apr 2008 05:28:54 +0000</pubDate>
			<dc:creator>myeggnoodles</dc:creator>
			<guid isPermaLink="false">15496@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I would also be very much interested in a "approve registration" plugin. I am building a forum for in-house use only so want to make sure that only staff sign up to use our forums :)
</p>]]></description>
					</item>
		<item>
			<title>samuli on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15477</link>
			<pubDate>Thu, 17 Apr 2008 10:21:03 +0000</pubDate>
			<dc:creator>samuli</dc:creator>
			<guid isPermaLink="false">15477@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I for one would appreciate the possibility for registration approval. I'm currently involved in a zero budget project to launch a forum on a sports related website that runs WordPress as CMS, and registration approval seems to become the last thing we need to solve before choosing bbPress (over Vanilla.) In this scenario, a registration approval plugin for bbPress would naturally be very handy. (I don't think we have skills to make our own plugin.)</p>
<p>For what the approval thing is needed, then? For example, <a href="http://lussumo.com/community/">Vanilla discussion forum</a> uses registration approval in a way we would appreciate to copy for our project. The idea of people not registering an account but applying for one would suit our project really well. "Why do you want to join this forum?" is a question we would like people to answer before letting them post anything.</p>
<p>A Finnish online magazine covering ice hockey, Jatkoaika.com, has <a href="http://keskustelu.jatkoaika.com">a forum</a> that has grown into a lively discussion community for over 13,000 registered users without losing its, well, usefulness. It's not only because of strict moderation of discussions, they require their users to apply for registration as well. Given that the topic is ice hockey (you know, that game with all the tackling and fighting and strong emotions) and most forum users are hockey fans ("We want blood!") and male ("We want blood!"), we consider that a great role model for this forum project of ours, even though we don't expect our forum to become as popular (and we are not about ice hockey.)</p>
<p>(In what comes to our project, we might still decide to NOT having approval for registration. There are advantages in also not having that, of course.)
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15474</link>
			<pubDate>Thu, 17 Apr 2008 07:48:37 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">15474@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If you are just trying to filter out spam bots, try my Human Test:<br />
<a href="http://bbpress.org/plugins/topic/human-test/" rel="nofollow">http://bbpress.org/plugins/topic/human-test/</a></p>
<p>Someone would have to explain the need for registration approval to me before I would bother making such a plugin.
</p>]]></description>
					</item>
		<item>
			<title>Claude on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15443</link>
			<pubDate>Wed, 16 Apr 2008 22:00:22 +0000</pubDate>
			<dc:creator>Claude</dc:creator>
			<guid isPermaLink="false">15443@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hi!<br />
i was wondering if someone made an plugin by now ? I'm really surprised that there isn't one so far!<br />
thanks! claude
</p>]]></description>
					</item>
		<item>
			<title>fel64 on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-12945</link>
			<pubDate>Sat, 29 Dec 2007 00:43:05 +0000</pubDate>
			<dc:creator>fel64</dc:creator>
			<guid isPermaLink="false">12945@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Be careful with modifying code files unless you're familiar with SVN, you're going to have troubles upgrading. :/
</p>]]></description>
					</item>
		<item>
			<title>colindb on "Is there an Approve Registration plugin?"</title>
			<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-12944</link>
			<pubDate>Fri, 28 Dec 2007 23:36:23 +0000</pubDate>
			<dc:creator>colindb</dc:creator>
			<guid isPermaLink="false">12944@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I don't know how to write plug-ins, but I just installed bbPress and wanted to be able to approve new users.  I messed around with the code just enough to get what I needed working, here are the changes I made:</p>
<p>Starting with the function bb_send_pass function in bb-includes/registration-functions.php: I added an optional third parameters, so the function signature now looks like:</p>
<p><code><br />
function bb_send_pass( $user, $pass, $toAdmin = false ) {<br />
</code></p>
<p>If the toAdmin flag is set I want this email to go to me, not the requesting user.  So, just above the "$message = ..." line, I added this:</p>
<p><code><br />
    $recipient = bb_get_user_email( $user-&#62;ID );<br />
    $rawRecipient = $recipient;<br />
    if ($toAdmin)<br />
        $recipient = 'myemail@example.com';<br />
</code></p>
<p>I'm sure there is a better way to grab an administrator's email, but like I said, I don't know anything about bbPress...  And what's this about $rawRecipient?  To make my life easier, I'm also including the email address in the email's body (so I can forward it to the correct person without having to look up their info again).  I did this by adding "Your email:" to the "$message = ..." line:</p>
<p><code><br />
$message = __("Your username is: %1\$s \nYour password is: %2\$s \nYour email is: %4\$s \nYou can now log in: %3<br />
\$s \n\nEnjoy!");<br />
</code></p>
<p>And then including "$rawRecipient" as the 4th parameter to the sprintf call at the end of the function.  Again, you could get fancy here (only include the email address if it's going to an admin, for example), but whatever, this works. :)</p>
<p>Okay, with that function done, we just need to change the registration code that calls it.  I went to the bb_new_user function in bb-includes/pluggable.php.  Just before that function returns there's an "if ( defined ('BB_INSTALLING') )" check.  The else case calls bb_send_pass (the function we just changed).  Add a third parameter (sending 'true'), and the registration code should now send an email to you instead of the newly registered user.</p>
<p>As a final touch, I updated the registration success page (bb-templates/kakumei/register-success.php in my case), telling the user that an admin will verify their request and then email them.</p>
<p>Hope this helps someone out.
</p>]]></description>
					</item>
		<item>
			<title>fel64 on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12906</link>
			<pubDate>Thu, 27 Dec 2007 13:34:15 +0000</pubDate>
			<dc:creator>fel64</dc:creator>
			<guid isPermaLink="false">12906@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>No. Unlike <code>&#39;/bbpressfolder/&#39;</code> (I presume), <code>&#39;wordpressuser&#39;</code> and <code>&#39;wordpresspass&#39;</code> are not placeholders for your actual value: they are the literal values you will have there. Check your wordpress cookie; those are what they use. A part of the structure is:<br />
<pre><code>wordpressuser_[[site-unique hash]]=[[your username]]
wordpresspass_[[site-unique hash]]=[[hash of your password]]</code></pre>
<p>With his settings, bb should now be using that too.
</p>]]></description>
					</item>
		<item>
			<title>kaolin on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12904</link>
			<pubDate>Thu, 27 Dec 2007 09:12:46 +0000</pubDate>
			<dc:creator>kaolin</dc:creator>
			<guid isPermaLink="false">12904@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>doesn't that just make it so anyone who goes to bbpress can work as you?
</p>]]></description>
					</item>
		<item>
			<title>italways on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12880</link>
			<pubDate>Mon, 24 Dec 2007 20:34:22 +0000</pubDate>
			<dc:creator>italways</dc:creator>
			<guid isPermaLink="false">12880@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, livibetter</p>
<p>Thanks! I have sorted it out, besides "$bb-&#62;cookiepath = '/'; ", I added the following in bbpress config.php</p>
<p>"<br />
$bb-&#62;path = '/bbpressfolder/';<br />
$bb-&#62;usercookie = 'wordpressuser';<br />
$bb-&#62;passcookie = 'wordpresspass';<br />
"<br />
It is strange that I still can not find any cookie file generated when I logged in WP but my WP works correctly, so weird... anyway, my problem is resolved, I am happy now:)
</p>]]></description>
					</item>
		<item>
			<title>livibetter on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12878</link>
			<pubDate>Mon, 24 Dec 2007 18:03:49 +0000</pubDate>
			<dc:creator>livibetter</dc:creator>
			<guid isPermaLink="false">12878@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I think bbPress works normal, but WordPress may not. After you logging in WordPress, is that logging effective? Can you get into WordPress admin pages?
</p>]]></description>
					</item>
		<item>
			<title>italways on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12877</link>
			<pubDate>Mon, 24 Dec 2007 17:04:43 +0000</pubDate>
			<dc:creator>italways</dc:creator>
			<guid isPermaLink="false">12877@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, livebetter</p>
<p>Thanks for your reply!</p>
<p>I added "$bb-&#62;cookiepath = '/';"  in the configure.php, but it does not make any difference, then I check my cookie, and find something interesting, when I logged in WP, it did not create any cookie at all, but when I logged bbpress, it creates cookie for mysite.com, probably that is the reason caused the problem, how do you think? thanks!
</p>]]></description>
					</item>
		<item>
			<title>livibetter on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12876</link>
			<pubDate>Mon, 24 Dec 2007 15:05:18 +0000</pubDate>
			<dc:creator>livibetter</dc:creator>
			<guid isPermaLink="false">12876@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>yes.<br />
I think you only need<br />
<pre><code>$bb-&#62;cookiepath = &#39;/&#39;;</code></pre>
<p>If this is not working, please check your browser's cookies. See what WordPress and bbPress send to you with what host and path. If you not sure what to check, try to clean cookies, then log in WordPress and bbPress.
</p>]]></description>
					</item>
		<item>
			<title>italways on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12875</link>
			<pubDate>Mon, 24 Dec 2007 13:59:14 +0000</pubDate>
			<dc:creator>italways</dc:creator>
			<guid isPermaLink="false">12875@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, livibetter</p>
<p>yes, $bb-&#62;wp_home and $bb-&#62;wp_siteurl set as <a href="http://mysite.com" rel="nofollow">http://mysite.com</a></p>
<p>do you mean this link:</p>
<p><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>]]></description>
					</item>
		<item>
			<title>livibetter on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12868</link>
			<pubDate>Mon, 24 Dec 2007 03:11:36 +0000</pubDate>
			<dc:creator>livibetter</dc:creator>
			<guid isPermaLink="false">12868@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Are <code>$bb-&#62;wp_home</code> and <code>$bb-&#62;wp_siteurl</code> set as <code><a href="http://mysite.com" rel="nofollow">http://mysite.com</a></code>?</p>
<p>There is a setting can force bbPress to access specific cookie path (like <code>/</code>, that is what you need), but I don't remember what it is. You can try to search for that.</p>
<p>If you find that post, please also link to it in this topic.
</p>]]></description>
					</item>
		<item>
			<title>italways on "cookie sharing between wp and bb"</title>
			<link>http://bbpress.org/forums/topic/cookie-sharing-between-wp-and-bb#post-12865</link>
			<pubDate>Sun, 23 Dec 2007 16:40:29 +0000</pubDate>
			<dc:creator>italways</dc:creator>
			<guid isPermaLink="false">12865@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi, livibetter</p>
<p>Thanks for your reply! yes, I installed them as you said, and my WP is in the root directory.</p>
<p>WP:  <a href="http://mysite.com" rel="nofollow">http://mysite.com</a><br />
bbPress: <a href="http://mystie.com/forum" rel="nofollow">http://mystie.com/forum</a></p>
<p>When I logged in WP, then go to bbPress, it need sign again, actually, I can sign in with another different account in bbPress, and it won't impact the account in WP, like they are absolutely in different cookie domain.</p>
<p>Do you have any idea about this? thanks!
</p>]]></description>
					</item>
		<item>
			<title>goldfiinger on "(Installation Problem) Help , it&#039;s gone all wrong!"</title>
			<link>http://bbpress.org/forums/topic/help-its-gone-all-wrong#post-12857</link>
			<pubDate>Sun, 23 Dec 2007 10:53:26 +0000</pubDate>
			<dc:creator>goldfiinger</dc:creator>
			<guid isPermaLink="false">12857@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Fantastic all working now many thanks :)
</p>]]></description>
					</item>
		<item>
			<title>livibetter on "(Installation Problem) Help , it&#039;s gone all wrong!"</title>
			<link>http://bbpress.org/forums/topic/help-its-gone-all-wrong#post-12855</link>
			<pubDate>Sun, 23 Dec 2007 05:00:33 +0000</pubDate>
			<dc:creator>livibetter</dc:creator>
			<guid isPermaLink="false">12855@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I assume you did an overlap install of bbPress onto WordPress!<br />
<code>/home/readme.html</code>, <code>/home/license.txt</code> and <code>/home/wp-login.php</code> are working.<br />
But <code>/home/index.php</code> isn't.<br />
except <code>index.php</code>, the first three files are not in bbPress; and you say you have clean up bbPress files. So, DID YOU DO AN OVERLAP INSTALL???</p>
<p>If so, just download WordPress package, and extract <code>index.php</code> from it, then put it into <code>/home</code>.
</p>]]></description>
					</item>

	</channel>
</rss>

