<?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 Tag: logout</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: logout</description>
<language>en</language>
<pubDate>Wed, 03 Dec 2008 00:08:17 +0000</pubDate>

<item>
<title>johnjamesjacoby on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-21225</link>
<pubDate>Tue, 02 Dec 2008 22:18:20 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">21225@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Short term, I was able to make this work by modifying 1 core WordPress file. This only allows for integration of the theme, but still does not allow access to the bbPress admin panel without changing the &#60;code&#62;bb-config.php&#60;/code&#62; file back to original.&#60;/p&#62;
&#60;p&#62;It's essentially a quick fix to get the theme working with all capabilities playing nicely.&#60;/p&#62;
&#60;p&#62;Basically I'm hard-coding the capability check from bbPress into WordPress. There should be a filter for this, but I'm not sure how to hook into it correctly without a mod or plug-in on the WordPress side.&#60;/p&#62;
&#60;p&#62;~My fix is in no way a permanent solution. Auto-updating your WordPress installation will overwrite this fix.~&#60;/p&#62;
&#60;p&#62;-----------------------------------------&#60;/p&#62;
&#60;p&#62;In FILE  &#60;code&#62;wp-includes/capabilities.php&#60;/code&#62;:&#60;br /&#62;
In the &#60;code&#62;meta_map_cap&#60;/code&#62; function:&#60;br /&#62;
Around Line 906:&#60;br /&#62;
AFTER &#60;code&#62;break;&#60;/code&#62;&#60;br /&#62;
BEFORE &#60;code&#62;default&#60;/code&#62;&#60;br /&#62;
INSERT:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* ----------------------- */
	case &#38;#39;write_post&#38;#39;:
		$caps[] = &#38;#39;write_posts&#38;#39;;
		break;
	case &#38;#39;edit_post&#38;#39;:
		// edit_posts, edit_others_posts, edit_deleted, edit_closed, ignore_edit_lock
		if ( !$bb_post = bb_get_post( $args[0] ) ) {
			$caps[] = &#38;#39;magically_provide_data_given_bad_input&#38;#39;;
			return $caps;
		}
		if ( $user_id == $bb_post-&#38;gt;poster_id )
			$caps[] = &#38;#39;edit_posts&#38;#39;;
		else
			$caps[] = &#38;#39;edit_others_posts&#38;#39;;
		if ( $bb_post-&#38;gt;post_status == &#38;#39;1&#38;#39; )
			$caps[] = &#38;#39;edit_deleted&#38;#39;;
		if ( !topic_is_open( $bb_post-&#38;gt;topic_id ) )
			$caps[] = &#38;#39;edit_closed&#38;#39;;
		$post_time = bb_gmtstrtotime( $bb_post-&#38;gt;post_time );
		$curr_time = time() + 1;
		$edit_lock = bb_get_option( &#38;#39;edit_lock&#38;#39; );
		if ( $edit_lock &#38;gt;= 0 &#38;#38;&#38;#38; $curr_time - $post_time &#38;gt; $edit_lock * 60 )
			$caps[] = &#38;#39;ignore_edit_lock&#38;#39;;
		break;
	case &#38;#39;delete_post&#38;#39; :
		// edit_deleted, delete_posts
		if ( !$bb_post = bb_get_post( $args[0] ) ) {
			$caps[] = &#38;#39;magically_provide_data_given_bad_input&#38;#39;;
			return $caps;
		}
		if ( 0 != $bb_post-&#38;gt;post_status )
			$caps[] = &#38;#39;edit_deleted&#38;#39;;
		// NO BREAK
	case &#38;#39;manage_posts&#38;#39; : // back compat
		$caps[] = &#38;#39;delete_posts&#38;#39;;
		break;
	case &#38;#39;write_topic&#38;#39;:
		$caps[] = &#38;#39;write_topics&#38;#39;;
		break;
	case &#38;#39;edit_topic&#38;#39;:
		// edit_closed, edit_deleted, edit_topics, edit_others_topics
		if ( !$topic = get_topic( $args[0] ) ) {
			$caps[] = &#38;#39;magically_provide_data_given_bad_input&#38;#39;;
			return $caps;
		}
		if ( !topic_is_open( $args[0]) )
			$caps[] = &#38;#39;edit_closed&#38;#39;;
		if ( &#38;#39;1&#38;#39; == $topic-&#38;gt;topic_status )
			$caps[] = &#38;#39;edit_deleted&#38;#39;;
		if ( $user_id == $topic-&#38;gt;topic_poster )
			$caps[] = &#38;#39;edit_topics&#38;#39;;
		else
			$caps[] = &#38;#39;edit_others_topics&#38;#39;;
		break;
	case &#38;#39;move_topic&#38;#39; :
		$caps[] = &#38;#39;move_topics&#38;#39;;
		break;
	case &#38;#39;stick_topic&#38;#39; :
		$caps[] = &#38;#39;stick_topics&#38;#39;;
		break;
	case &#38;#39;close_topic&#38;#39; :
		$caps[] = &#38;#39;close_topics&#38;#39;;
		break;
	case &#38;#39;delete_topic&#38;#39; :
		$caps[] = &#38;#39;delete_topics&#38;#39;;
		add_filter( &#38;#39;get_topic_where&#38;#39;, &#38;#39;no_where&#38;#39;, 9999 );
		if ( !$topic = get_topic( $args[0] ) ) {
			$caps[] = &#38;#39;magically_provide_data_given_bad_input&#38;#39;;
			return $caps;
		}
		if ( 0 != $topic-&#38;gt;topic_status )
			$caps[] = &#38;#39;edit_deleted&#38;#39;;
		remove_filter( &#38;#39;get_topic_where&#38;#39;, &#38;#39;no_where&#38;#39;, 9999 );
		break;
	case &#38;#39;manage_topics&#38;#39; :
		// back compat
		$caps[] = &#38;#39;move_topics&#38;#39;;
		$caps[] = &#38;#39;stick_topics&#38;#39;;
		$caps[] = &#38;#39;close_topics&#38;#39;;
		$caps[] = &#38;#39;delete_topics&#38;#39;;
		break;
	case &#38;#39;add_tag_to&#38;#39;:
		// edit_closed, edit_deleted, edit_tags;
		if ( !$topic = get_topic( $args[0] ) ) {
			$caps[] = &#38;#39;magically_provide_data_given_bad_input&#38;#39;;
			return $caps;
		}
		if ( !topic_is_open( $topic-&#38;gt;topic_id ) )
			$caps[] = &#38;#39;edit_closed&#38;#39;;
		if ( &#38;#39;1&#38;#39; == $topic-&#38;gt;topic_status )
			$caps[] = &#38;#39;edit_deleted&#38;#39;;
		$caps[] = &#38;#39;edit_tags&#38;#39;;
		break;
	case &#38;#39;edit_tag_by_on&#38;#39;:
		// edit_closed, edit_deleted, edit_tags, edit_others_tags
		if ( !$topic = get_topic( $args[1] ) ) {
			$caps[] = &#38;#39;magically_provide_data_given_bad_input&#38;#39;;
			return $caps;
		}
		if ( !topic_is_open( $topic-&#38;gt;topic_id ) )
			$caps[] = &#38;#39;edit_closed&#38;#39;;
		if ( &#38;#39;1&#38;#39; == $topic-&#38;gt;topic_status )
			$caps[] = &#38;#39;edit_deleted&#38;#39;;
		if ( $user_id == $args[0] )
			$caps[] = &#38;#39;edit_tags&#38;#39;;
		else
			$caps[] = &#38;#39;edit_others_tags&#38;#39;;
		break;
	case &#38;#39;edit_user&#38;#39;:
		// edit_profile, edit_users;
		if ( $user_id == $args[0] )
			$caps[] = &#38;#39;edit_profile&#38;#39;;
		else
			$caps[] = &#38;#39;edit_users&#38;#39;;
		break;
	case &#38;#39;edit_favorites_of&#38;#39;:
		// edit_favorites, edit_others_favorites;
		if ( $user_id == $args[0] )
			$caps[] = &#38;#39;edit_favorites&#38;#39;;
		else
			$caps[] = &#38;#39;edit_others_favorites&#38;#39;;
		break;
	case &#38;#39;delete_forum&#38;#39;:
		$caps[] = &#38;#39;delete_forums&#38;#39;;
		break;
	case &#38;#39;change_user_password&#38;#39;:
		// change_password, edit_users
		$caps[] = &#38;#39;change_password&#38;#39;;
		if ( $user_id != $args[0] )
			$caps[] = &#38;#39;edit_users&#38;#39;;
		break;
/* ----------------------- */&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>johnjamesjacoby on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-21208</link>
<pubDate>Tue, 02 Dec 2008 18:56:54 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">21208@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It seems like there are several issues here, and I'm not sure which is really the issue or which is a bug...&#60;/p&#62;
&#60;p&#62;Firstly, when integrated, bbPress wants to use the WordPress classes and functions where possible. Namely, the problem with capabilities lies currently with the difference in the &#60;code&#62;WP_User-&#38;gt;has_cap&#60;/code&#62; function. &#60;/p&#62;
&#60;p&#62;On the WordPress side of it, it is missing the &#60;code&#62;global $wp_roles;&#60;/code&#62; and the corresponding check of those roles against the current capability to check.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$caps = call_user_func_array( array(&#38;#38;$wp_roles, &#38;#39;map_meta_cap&#38;#39;), $args );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;So I'm not sure if this is just a case of bbPress not keeping up with the WordPress user/role classes, or if this is WordPress not properly carrying over bbPress capabilities.&#60;/p&#62;
&#60;p&#62;Ugh...
&#60;/p&#62;</description>
</item>
<item>
<title>Ipstenu on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-21014</link>
<pubDate>Mon, 24 Nov 2008 17:26:47 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">21014@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Admittedly, I couldn't get BBPress-Live to work (I wanted to include recent forum posts on my WP front page), but I figured it may be worth a shot :) Good luck!
&#60;/p&#62;</description>
</item>
<item>
<title>lorenzocoffee on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-21010</link>
<pubDate>Mon, 24 Nov 2008 16:35:53 +0000</pubDate>
<dc:creator>lorenzocoffee</dc:creator>
<guid isPermaLink="false">21010@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@johnjamesjacoby: no worryes, I apreciate your effort for the community, and the attention you gave me.&#60;/p&#62;
&#60;p&#62;@Ipstenu : You light up my day (well almost a month..already)&#60;br /&#62;
bthw bbsync have many issue in the 2.7+1.x ,but a new look afresh maybe will do&#60;/p&#62;
&#60;p&#62;thankyou both very much
&#60;/p&#62;</description>
</item>
<item>
<title>Ipstenu on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-21001</link>
<pubDate>Mon, 24 Nov 2008 15:25:29 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">21001@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;BBsync and BBpressLive is as close as I know how to get, &#60;strong&#62;lorenzo&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/bbsync/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/bbsync/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/bbpress-live/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/bbpress-live/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>johnjamesjacoby on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20997</link>
<pubDate>Mon, 24 Nov 2008 14:53:02 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">20997@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@lorenzo: I'm not exactly sure if there is a modification to do that or not. It seems like it would be an easy enough process with a plug-in of some kind, but that isn't the point of integration so unfortunately I have little experience with it. :/
&#60;/p&#62;</description>
</item>
<item>
<title>lorenzocoffee on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20993</link>
<pubDate>Mon, 24 Nov 2008 11:06:16 +0000</pubDate>
<dc:creator>lorenzocoffee</dc:creator>
<guid isPermaLink="false">20993@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@johnjamesjacoby:&#60;br /&#62;
absolutely right,that is pure and simple:&#60;/p&#62;
&#60;p&#62;thanks
&#60;/p&#62;</description>
</item>
<item>
<title>johnjamesjacoby on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20980</link>
<pubDate>Sun, 23 Nov 2008 20:26:21 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">20980@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@lorenzo: Let me ask a question to clarify. If I understand correctly, it sounds like you want to import your blog posts from WordPress and make them topic posts in bbPress?&#60;/p&#62;
&#60;p&#62;@everyone: I am dedicating this evening to trying to work out where the process is failing. Right now, if you do NOT need to use ANY of the WordPress functions in your bbPress theme, the integration works perfectly. Logging in and out of either/or works perfectly with wp2.7 and bbp1.0a2. If you skip step 5 in my above process, there are no operational issues, only theme integration issues by not being able to use the WordPress functions.
&#60;/p&#62;</description>
</item>
<item>
<title>lorenzocoffee on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20979</link>
<pubDate>Sun, 23 Nov 2008 18:50:09 +0000</pubDate>
<dc:creator>lorenzocoffee</dc:creator>
<guid isPermaLink="false">20979@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you very much for sharing  this  experience and your knowledge,&#60;br /&#62;
at this point I have to take advantage (lol)&#60;br /&#62;
with a simple question:&#60;br /&#62;
given I (eventually) do not need  to have  registered users to let them post (as in WP ,it's all 'open' ) ,and my only needs is to  automatically import from WP  to bbpress  the posted articles (it's like a mag) ,any chanches to 'automate' this quickly with the 2.7 and the 1.x ?&#60;br /&#62;
thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Epiphone on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20846</link>
<pubDate>Thu, 20 Nov 2008 20:27:52 +0000</pubDate>
<dc:creator>Epiphone</dc:creator>
<guid isPermaLink="false">20846@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is a interesting post.&#60;/p&#62;
&#60;p&#62;Im currently running WP 2.5.1 and bbPress 0.9.2, and Im getting slightly worried on falling behind on Wordpress upgrades. I think this the most success someones had with WP 2.7 and bbPress.&#60;/p&#62;
&#60;p&#62;Im sure I've seen a WP 2.6.3 and bbPress 1.0.2 installation and it didn't like it at all, sent out a redirect loop.&#60;/p&#62;
&#60;p&#62;Thanks for sharing
&#60;/p&#62;</description>
</item>
<item>
<title>johnjamesjacoby on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20840</link>
<pubDate>Thu, 20 Nov 2008 16:32:47 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">20840@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've logged into both sides with a test account and still run into this problem. It seems that integrating with WordPress interferes with some capabilities. Like, when viewing a topic logged in as Key Master, I can see the IP addresses of people that post, and I have the link to add that topic to my favorites, but I cannot post a reply, I cannot edit the tags, and I cannot see any other admin functions; all of their capabilities return no value.&#60;/p&#62;
&#60;p&#62;I haven't given up yet! hah!
&#60;/p&#62;</description>
</item>
<item>
<title>johnjamesjacoby on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20798</link>
<pubDate>Wed, 19 Nov 2008 15:33:35 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">20798@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hmm...&#60;/p&#62;
&#60;p&#62;There should be a user-sync tool that does this without asking people to login twice, since the idea is to fully integrate them together seamlessly.
&#60;/p&#62;</description>
</item>
<item>
<title>Ipstenu on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20797</link>
<pubDate>Wed, 19 Nov 2008 15:25:10 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">20797@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;FYI, the roles don't always match up right until the user logs in to both sides of the game.&#60;/p&#62;
&#60;p&#62;If I create an ID in bbPress, I have a WP role of 'None'.  When I subsequently login to WP, my role is flipped to whatever the default is.  Done.  Vice versa for bbPress.
&#60;/p&#62;</description>
</item>
<item>
<title>kevinjohngallagher on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20773</link>
<pubDate>Wed, 19 Nov 2008 02:48:55 +0000</pubDate>
<dc:creator>kevinjohngallagher</dc:creator>
<guid isPermaLink="false">20773@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Wow, i think you just nailed one of my niggling issues with the install.&#60;/p&#62;
&#60;p&#62;Well done and thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>johnjamesjacoby on "Integrate wp2.7 and bbp1.0a2"</title>
<link>http://bbpress.org/forums/topic/integrate-wp27-and-bbp10a2#post-20770</link>
<pubDate>Wed, 19 Nov 2008 01:38:47 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">20770@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Okay, I think I've experienced similar problems as most of you, and I just got mine working logging in and out from every angle with access to the admin panel on both. It still seems to hiccup a little when changing roles, so I am still trying to track that down, but I wanted to share where I am so far.&#60;/p&#62;
&#60;p&#62;I am using the WordPress 2.7 beta 3 nightly build, and the bbPress 1.0 alpha 2. I am using various plug-ins and what-not and have akismet active on both.&#60;/p&#62;
&#60;p&#62;My host is 1and1.com.&#60;/p&#62;
&#60;p&#62;There are a few things that are of the utmost importance:&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;I recommend BEING LOGGED INTO WORDPRESS AS 'admin' with user_id of '1' when you install bbPress. Any other Administrator account didn't want to redirect to the admin panel properly. I assume the cookies will immediately conflict as they are shifted around, causing weird issues from the start.&#60;/li&#62;
&#60;li&#62;BOTH -config.php files need to have the AUTH, SECURE, and LOGGED_IN KEYS defined correctly.&#60;/li&#62;
&#60;li&#62;I personally also defined the SECRET_KEY in WordPress, although I'm not sure this is necessary yet.&#60;/li&#62;
&#60;li&#62;bbPress needs to have the salts entered correctly during installation so that they match WordPress. Fortunately the link to the hidden admin panel is provided during the install so you can get them pretty conveniently. I personally did not have a secure_salt so I left it empty.&#60;/li&#62;
&#60;li&#62;MUST add&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$bb-&#38;gt;WP_BB = true;
if (file_exists(&#38;#39;../wp-blog-header.php&#38;#39;))
	require_once(&#38;#39;../wp-blog-header.php&#38;#39;);
else
if (file_exists(&#38;#39;../../wp-blog-header.php&#38;#39;))
	require_once(&#38;#39;../../wp-blog-header.php&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or your personal equivalent to bb-config.php&#60;/li&#62;
&#60;li&#62;I personally had to add&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;define(&#38;#39;COOKIE_DOMAIN&#38;#39;, &#38;#39;&#38;#39;);
define(&#38;#39;COOKIEPATH&#38;#39;, &#38;#39;&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to my wp-config.php to make it go.
&#60;/li&#62;
&#60;li&#62;Login to bbPress as 'admin' if you are already not, navigate to settings/wordpress integration, and adjust the role map accordingly.&#60;/li&#62;
&#60;li&#62;Visit bb-admin/rewrite-rules.php page and copy the code&#60;/li&#62;
&#60;li&#62;Put the following in a file named &#34;.htaccess&#34; file and place that file in the bbpress root directory:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Options -MultiViews
YOUR PREVIOUSLY COPIED CODE&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This is to make sure your URL's are rewriting correctly.
&#60;/li&#62;
&#60;li&#62;Logout.&#60;/li&#62;
&#60;li&#62;Clear all website cookies and attempt logging in either/or/both WordPress and bbPress. Access admin panels of both. Basically check for functionality.&#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;That's how I got mine working. Like I said, I'm still having issues assigning user roles for some reason, so I'll try and figure that out next.
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Error on logging out"</title>
<link>http://bbpress.org/forums/topic/error-on-logging-out#post-20194</link>
<pubDate>Fri, 24 Oct 2008 15:51:51 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">20194@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Works! Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Error on logging out"</title>
<link>http://bbpress.org/forums/topic/error-on-logging-out#post-20193</link>
<pubDate>Fri, 24 Oct 2008 15:47:30 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20193@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah same problem.
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Error on logging out"</title>
<link>http://bbpress.org/forums/topic/error-on-logging-out#post-20192</link>
<pubDate>Fri, 24 Oct 2008 15:47:08 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">20192@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I using .9, not 1.0 alpha. Same solution?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Error on logging out"</title>
<link>http://bbpress.org/forums/topic/error-on-logging-out#post-20190</link>
<pubDate>Fri, 24 Oct 2008 15:44:34 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20190@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This happens because there was a bug in early bbPress 1.0 alpha where it does not handle a blank query OR your HTACCESS file is missing a way to handle empty topics names.&#60;/p&#62;
&#60;p&#62;Edit your &#60;code&#62;.htaccess&#60;/code&#62; file and add these two rules to the bottom of the rule list (before &#60;code&#62;&#38;lt;/ifmodule&#38;gt;&#60;/code&#62;)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;RewriteRule ^topic(&#124;/)$ /forums/ [R=302,L,QSA]
RewriteRule ^forum(&#124;/)$ /forums/ [R=302,L,QSA]&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;em&#62; &#60;/em&#62;&#60;br /&#62;
Note that you have to change &#60;code&#62;/forums/&#60;/code&#62; to the base of your forum path, whatever it might be if it's not forums. ie. &#60;code&#62;/discussions/&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;/community/&#60;/code&#62;&#60;br /&#62;
whatever, etc.
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Error on logging out"</title>
<link>http://bbpress.org/forums/topic/error-on-logging-out#post-20166</link>
<pubDate>Thu, 23 Oct 2008 20:37:52 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">20166@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think this problem originates with the hidden forum plugin. I am in the hidden forum, when I logout, then I have the above error. If I am on the front page, then I have no problems logging out.
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Error on logging out"</title>
<link>http://bbpress.org/forums/topic/error-on-logging-out#post-20148</link>
<pubDate>Thu, 23 Oct 2008 12:19:46 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">20148@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Using .9.0.2. Using Firefox2.&#60;/p&#62;
&#60;p&#62;Logging out is sometimes a problem, and then sometimes not. &#60;/p&#62;
&#60;p&#62;Sometimes when I log out, I get the following address in my url:&#60;br /&#62;
&#60;a href=&#34;http://www.example.com/example/topic/&#34; rel=&#34;nofollow&#34;&#62;http://www.example.com/example/topic/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then the error message:&#60;br /&#62;
The requested URL /example/topic/ was not found on this server.&#60;/p&#62;
&#60;p&#62;Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
&#60;/p&#62;</description>
</item>
<item>
<title>Sonika on "WordPress integration: Logout problem"</title>
<link>http://bbpress.org/forums/topic/wordpress-integration-logout-problem#post-18712</link>
<pubDate>Wed, 27 Aug 2008 16:40:40 +0000</pubDate>
<dc:creator>Sonika</dc:creator>
<guid isPermaLink="false">18712@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Maybe it will be helpful for somebody:&#60;br /&#62;
if you have a problem with bbpress logout after &#34;wp &#38;#38; bbpress integration&#34; -- delete cookies in your browser and try agan.&#60;br /&#62;
It works for me (wp 2.5.1, bbpress 0.9.0.2)
&#60;/p&#62;</description>
</item>
<item>
<title>mattbaehr on "WordPress integration: Logout problem"</title>
<link>http://bbpress.org/forums/topic/wordpress-integration-logout-problem#post-18062</link>
<pubDate>Fri, 08 Aug 2008 00:05:00 +0000</pubDate>
<dc:creator>mattbaehr</dc:creator>
<guid isPermaLink="false">18062@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have a similar logout issue.  My WP and BB are integrated.  I can login at the WP site and go to the BB site without issue.  I can then logout of the BB site, but when I jump back to WP, I am still logged in.
&#60;/p&#62;</description>
</item>
<item>
<title>DVDVideoSoft on "Automatic logout if browser window is closed. How to avoid?"</title>
<link>http://bbpress.org/forums/topic/automatic-logout-if-browser-window-is-closed-how-to-avoid#post-16989</link>
<pubDate>Sat, 28 Jun 2008 12:18:25 +0000</pubDate>
<dc:creator>DVDVideoSoft</dc:creator>
<guid isPermaLink="false">16989@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Dear John Conners, thank you!&#60;br /&#62;
Simple and works!
&#60;/p&#62;</description>
</item>
<item>
<title>newbbie on "WordPress integration: Logout problem"</title>
<link>http://bbpress.org/forums/topic/wordpress-integration-logout-problem#post-16983</link>
<pubDate>Sat, 28 Jun 2008 05:01:10 +0000</pubDate>
<dc:creator>newbbie</dc:creator>
<guid isPermaLink="false">16983@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm having problems, too, with logging out. When I click Log Out, it does nothing. But if I switch to my Profile, it gives me the Login Form on my Profile page. But if I go back to the Home page, it remembers my previous login. This happened with the original theme, and is still happening with a new theme. This happens whether I have a session logged in with my WordPress installation or not--it doesn't seem to be related. This is a serious problem. I can't launch a bbPress-based site with login/logout not working.
&#60;/p&#62;</description>
</item>
<item>
<title>marp on "integration logout"</title>
<link>http://bbpress.org/forums/topic/integration-logout#post-16821</link>
<pubDate>Fri, 20 Jun 2008 05:04:58 +0000</pubDate>
<dc:creator>marp</dc:creator>
<guid isPermaLink="false">16821@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;My new install of both wordpress and bbpress seems to linked successfully, as when I login, i am automatically logged in on the other.&#60;/p&#62;
&#60;p&#62;However, logging out of one, does not log me out of the other.  &#60;/p&#62;
&#60;p&#62;Additionally, when this occurs, it is possible for me to log back in under a different account and find that each now as a different account logged in.&#60;/p&#62;
&#60;p&#62;bbpress 0.9.0.2&#60;br /&#62;
wordpress 2.5.1
&#60;/p&#62;</description>
</item>
<item>
<title>wilcosky on "WordPress integration: Logout problem"</title>
<link>http://bbpress.org/forums/topic/wordpress-integration-logout-problem#post-16754</link>
<pubDate>Sat, 14 Jun 2008 05:06:03 +0000</pubDate>
<dc:creator>wilcosky</dc:creator>
<guid isPermaLink="false">16754@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am having similar issues. I have followed the steps from kineda.com, and it's not working for me personally. Well, everything is working. I have fully integrated my wordpress blog and bbpress forum. So, users can sign up and use one username and password for both, works great, BUT, first of all... sometimes I guess the cookie part isn't working, because I can log in at my wordpress blog, then go to my forum and I won't be logged in. But, when I first did the integration, it worked. I'd log in at one, then go to the other and already be logged in.  So there is that issue, then I am also having an issue every now and then with logging out. If I log out from my bbpress it gives me some kind of header already sent error... But, again, that only happens periodically. So, my issues are odd and they don't happen all the time :)...&#60;/p&#62;
&#60;p&#62;I'm thinking that most of my issues have to do with the cookies. Has anyone discovered any hints or tips to make sure that my cookie code is correct? The cookie part of my code in my bb-config file looks like this:&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;authcookie = 'wordpress_354420af36a7c3b4f6ad07a79c17612a';&#60;br /&#62;
$bb-&#38;gt;cookiedomain = '';&#60;br /&#62;
$bb-&#38;gt;cookiepath = '/';&#60;br /&#62;
$bb-&#38;gt;sitecookiepath = '';&#60;/p&#62;
&#60;p&#62;does all that look correct?
&#60;/p&#62;</description>
</item>
<item>
<title>JohnConners on "Automatic logout if browser window is closed. How to avoid?"</title>
<link>http://bbpress.org/forums/topic/automatic-logout-if-browser-window-is-closed-how-to-avoid#post-16752</link>
<pubDate>Fri, 13 Jun 2008 22:53:05 +0000</pubDate>
<dc:creator>JohnConners</dc:creator>
<guid isPermaLink="false">16752@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you want people to stay logged in after the end of the session, just add the following within the form element in the login-form.php template file:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;input name=&#38;quot;remember&#38;quot; type=&#38;quot;hidden&#38;quot; value=&#38;quot;1&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Just make sure it's before the closing &#60;code&#62;&#38;lt;/form&#38;gt;&#60;/code&#62; tag.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Automatic logout if browser window is closed. How to avoid?"</title>
<link>http://bbpress.org/forums/topic/automatic-logout-if-browser-window-is-closed-how-to-avoid#post-16748</link>
<pubDate>Fri, 13 Jun 2008 16:04:58 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">16748@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#38;gt; Yes, but you can see it does not survive on my forum. &#60;/p&#62;
&#60;p&#62;Right you are :-)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Name	bbpress_[snipped]
Value	chrishajer%7C[snipped]
Host	&#60;a href=&#34;http://www.dvdvideosoft.com&#34; rel=&#34;nofollow&#34;&#62;www.dvdvideosoft.com&#60;/a&#62;
Path	/forums/
Secure	No
Expires	At End Of Session&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; &#38;nbsp;&#60;br /&#62;
I just noticed there is no box at this forum either.
&#60;/p&#62;</description>
</item>
<item>
<title>DVDVideoSoft on "Automatic logout if browser window is closed. How to avoid?"</title>
<link>http://bbpress.org/forums/topic/automatic-logout-if-browser-window-is-closed-how-to-avoid#post-16746</link>
<pubDate>Fri, 13 Jun 2008 10:23:30 +0000</pubDate>
<dc:creator>DVDVideoSoft</dc:creator>
<guid isPermaLink="false">16746@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;to sambauers:&#60;br /&#62;
&#38;gt;&#38;gt; You have to explicitly choose &#34;Remember me&#34; when you login. If&#60;br /&#62;
&#38;gt;&#38;gt; that option isn't there when you login then you need to update&#60;br /&#62;
&#38;gt;&#38;gt; your template to match the default one in this regard.&#60;/p&#62;
&#60;p&#62;It makes sense! Please give me some advice.&#60;br /&#62;
Do I need to correct my skin template or can I set a parameter in the config file?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
