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

<item>
<title>chrishajer on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-15449</link>
<pubDate>Wed, 16 Apr 2008 23:31:24 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15449@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Good luck to you.  I replied to your other post about removing it from your system.
&#60;/p&#62;</description>
</item>
<item>
<title>raygene on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-15444</link>
<pubDate>Wed, 16 Apr 2008 22:09:41 +0000</pubDate>
<dc:creator>raygene</dc:creator>
<guid isPermaLink="false">15444@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#34;Why does it matter? I'm curious.&#34;&#60;/p&#62;
&#60;p&#62;1- Makes up for a long list when you've deleted hundreds of posts/topics&#60;/p&#62;
&#60;p&#62;2- Bloats the database for absolutely nothing&#60;/p&#62;
&#60;p&#62;Doesn't matter, I'm about to remove bbPress from my WP installation, not enough Admin control.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Gene
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-15383</link>
<pubDate>Tue, 15 Apr 2008 04:07:45 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15383@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Why does it matter?  I'm curious.
&#60;/p&#62;</description>
</item>
<item>
<title>raygene on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-15381</link>
<pubDate>Tue, 15 Apr 2008 03:52:55 +0000</pubDate>
<dc:creator>raygene</dc:creator>
<guid isPermaLink="false">15381@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Funny it still hasn't been implemented yet (0.9.0.1), first time I encounter a forum software that doesn't delete posts from the database.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "rebuilding topics DB"</title>
<link>http://bbpress.org/forums/topic/rebuilding-topics-db#post-8835</link>
<pubDate>Wed, 11 Jul 2007 07:20:34 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">8835@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah I was just being quick and lazy. I guess I could fetch the proper table prefix and make it work for anyone.&#60;/p&#62;
&#60;p&#62;Just shared it in the hope someone more skilled would make a more professional function.&#60;/p&#62;
&#60;p&#62;Without much more work, it could be made to rebuild the entire topics table from scratch using all the posts table data (well except for the topic title which apparently is not stored anywhere else? Would it have been too much to have  varchar post_title in there for eventual ability to allow post replies to change the title without a plugin/extra table?)&#60;/p&#62;
&#60;p&#62;It also would allow the &#34;real delete&#34; ability several people have been asking for.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "rebuilding topics DB"</title>
<link>http://bbpress.org/forums/topic/rebuilding-topics-db#post-8829</link>
<pubDate>Wed, 11 Jul 2007 04:48:31 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">8829@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you use &#60;code&#62;$bbdb-&#38;gt;users&#60;/code&#62; you should get the appropriate table name instead.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "rebuilding topics DB"</title>
<link>http://bbpress.org/forums/topic/rebuilding-topics-db#post-8822</link>
<pubDate>Wed, 11 Jul 2007 03:55:50 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">8822@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;tested working - at least for my setup:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function rebuild_topics() {
global $bbdb;
// currently only rebuilds last post pointers, last poster name, last poster id, last topic post date
//  todo:  rebuild entire topics table
// warnings: hard coded for WP user table - backup your DB before using
// run the built-in post/topic recount first

echo &#38;quot;\t&#38;lt;br&#38;gt;\n&#38;quot;;
	if ( $topics = (array) $bbdb-&#38;gt;get_results(&#38;quot;SELECT topic_id,post_id,poster_id,post_time FROM &#38;lt;code&#38;gt;bb_posts&#38;lt;/code&#38;gt; a WHERE  post_position=(SELECT MAX(post_position) FROM &#38;lt;code&#38;gt;bb_posts&#38;lt;/code&#38;gt; WHERE topic_id=a.topic_id) AND post_status = &#38;#39;0&#38;#39; GROUP BY topic_id &#38;quot;) ) :
		echo &#38;quot;\t\t&#38;quot; . __(&#38;#39;Calculating last posters for each topic...&#38;#39;) . &#38;quot;\n&#38;quot;;
		foreach ($topics as $t) {
			echo $t-&#38;gt;topic_id.&#38;quot;... &#38;quot;;
			$user_login=$bbdb-&#38;gt;get_var(&#38;quot;SELECT user_login FROM wp_users WHERE ID=&#38;#39;$t-&#38;gt;poster_id&#38;#39;&#38;quot;);
			$bbdb-&#38;gt;query(&#38;quot;UPDATE $bbdb-&#38;gt;topics SET topic_time=&#38;#39;$t-&#38;gt;post_time&#38;#39;,topic_last_poster= &#38;#39;$t-&#38;gt;poster_id&#38;#39;, topic_last_poster_name=&#38;#39;$user_login&#38;#39;, topic_last_post_id=&#38;#39;$t-&#38;gt;post_id&#38;#39; WHERE topic_id = &#38;#39;$t-&#38;gt;topic_id&#38;#39;&#38;quot;);
		}
	endif;
	echo &#38;quot;&#38;lt;br&#38;gt; \t\t&#38;quot; . __(&#38;#39;Done calculating last posters.&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>_ck_ on "rebuilding topics DB"</title>
<link>http://bbpress.org/forums/topic/rebuilding-topics-db#post-8820</link>
<pubDate>Wed, 11 Jul 2007 03:18:30 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">8820@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;BBpress has no mass search/delete feature, unlike several wordpress plugins that are available. Even the upcoming search feature that was posting on the blog doesn't seem to have an &#34;action&#34; ability, just search, which doesn't make sense, so maybe there will be more to it.&#60;/p&#62;
&#60;p&#62;Trying searching and deleting 50+ posts by hand, not worth it.&#60;/p&#62;
&#60;p&#62;Recount will only update counts, not pointers.&#60;/p&#62;
&#60;p&#62;I am just about finished with a new function to do this however.&#60;/p&#62;
&#60;p&#62;Right now it only updates the last poster id and name, the trickiest part was figuring out the proper mysql expression to grab the last item while grouping by topic_id. Took an hour of research.&#60;/p&#62;
&#60;p&#62;But in fact my routine could be extended further to rebuild the entire topics database from scratch if need be since all the data is in the posts and it's just kept in the topics table for speed.&#60;/p&#62;
&#60;p&#62;I just find it surprising there isn't such a routine already and I am hoping I am not duplicating efforts already done.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "rebuilding topics DB"</title>
<link>http://bbpress.org/forums/topic/rebuilding-topics-db#post-8810</link>
<pubDate>Wed, 11 Jul 2007 01:12:01 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">8810@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Why did you have to use phpMyAdmin to delete posts? That makes no sense. Are you unable to log in?&#60;/p&#62;
&#60;p&#62;Have you tried the 'Recount' feature? bb-Admin &#38;gt; Site Management &#38;gt; Recount, that is, if you can log in, but I should think you can since that would be the more serious problem but I haven't seen you post about it.&#60;/p&#62;
&#60;p&#62;I suggest that you mark spam posts as spam in future. At least in Kakumei there should be a link to do so at the bottom of the post, by the post age, if the user is logged in and of high enough authority.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "rebuilding topics DB"</title>
<link>http://bbpress.org/forums/topic/rebuilding-topics-db#post-8806</link>
<pubDate>Wed, 11 Jul 2007 00:22:52 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">8806@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I had to use phpmyadmin to delete a few dozen posts by a spammer.&#60;/p&#62;
&#60;p&#62;How can I rebuild the topics DB so the front page (and sub-forums) are accurate?&#60;/p&#62;
&#60;p&#62;Or is the answer no such tool exists and I'll have to write one?
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "how to manage a forum with bbpress"</title>
<link>http://bbpress.org/forums/topic/how-to-manage-a-forum-with-bbpress#post-8691</link>
<pubDate>Wed, 04 Jul 2007 16:33:21 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">8691@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't think that you are a fascist for wanting to have some control, but that is why most forums promote 'moderators' to help with the duties of using a forum.   If it is too much for yourself, promote a user in your forum to be a moderator and help out (hense, I am a moderator here at bbPress.org).&#60;/p&#62;
&#60;p&#62;The plugins will allow you to control what can be said in your forum (mdawaffe even has a language filter plugin), but that is only half  the matter.    I don't believe any forum software will give you the 'fascist' tools to control exactly what people do and say, but there is a plugin here as well (can't remember the name) that can have you give 'warnings' to members that don't follow the rules before banning them.&#60;/p&#62;
&#60;p&#62;Take a look over in the 'extend' tab of this forum for the plugins that might help you with your controlling tasks, but try promoting a moderator as well.&#60;/p&#62;
&#60;p&#62;My 2 cents.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>serimu on "how to manage a forum with bbpress"</title>
<link>http://bbpress.org/forums/topic/how-to-manage-a-forum-with-bbpress#post-8690</link>
<pubDate>Wed, 04 Jul 2007 16:19:49 +0000</pubDate>
<dc:creator>serimu</dc:creator>
<guid isPermaLink="false">8690@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have bbpress(0.8.2) integration with wordpress(2.2.1).&#60;/p&#62;
&#60;p&#62;I did not have any forum management before I add a forum to my previous wordpress website. Number of users are increasing daily. So as I did not have any experience with management of a forum, I have some problems.&#60;/p&#62;
&#60;p&#62;In the beginning I installed to standard version of bbpress. After one month of forum experience, I want to add moderation plugin. Because my users are not experienced forum users. I have a range from middle school students to company owners or retired workers. &#60;/p&#62;
&#60;p&#62;Some of the users sends strange messages, which I dont want to see on my forum.&#60;/p&#62;
&#60;p&#62;Some of them do not allow forum rules. And some of them dont know how to use a forum. Namely when they have a new question, they write &#34;I know it is not related to the subject ...&#34;. &#60;/p&#62;
&#60;p&#62;I think what I need it to make the all messages for new users, moderated. Or all messages are moderated. I dont know why but the moderation plugin do not work with latest version of bbpress. So I have to uninstall the plugin and make messages un-moderated. &#60;/p&#62;
&#60;p&#62;I will also try &#34;move it&#34; plugin, for unrelated messages to subject of message.&#60;/p&#62;
&#60;p&#62;But what is the best management style for such a community. I think bbpress.org do not need moderation of messages, because at least its community know how to use a forum. &#60;/p&#62;
&#60;p&#62;Is it better, not to waste my time to manage the forum. Namely no moderation to messages or just live what ever people writes to the forum. As I said before this is my first forum, and I also dont want people to use msn-type language usage. Am I fascist :) ?
&#60;/p&#62;</description>
</item>
<item>
<title>patrace on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-7655</link>
<pubDate>Sat, 26 May 2007 05:19:43 +0000</pubDate>
<dc:creator>patrace</dc:creator>
<guid isPermaLink="false">7655@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'd also like to see some perma-delete functionality.  The phantom posts are a little annoying.
&#60;/p&#62;</description>
</item>
<item>
<title>csl749 on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-7226</link>
<pubDate>Fri, 04 May 2007 16:07:33 +0000</pubDate>
<dc:creator>csl749</dc:creator>
<guid isPermaLink="false">7226@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've been wondering about this too. Some sort of 'purge deletion cache' button (well, I guess it's like emptying the trash can) would be great.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-7084</link>
<pubDate>Sat, 28 Apr 2007 15:35:38 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">7084@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It is strange isn't it.    I guess it is the 'gmail' approach of never really deleting anything.   I believe someone put up a TRAC ticket on this issue for 1.0's release though.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>smurfdude on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-6998</link>
<pubDate>Wed, 25 Apr 2007 18:37:22 +0000</pubDate>
<dc:creator>smurfdude</dc:creator>
<guid isPermaLink="false">6998@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;God only knows why the option to permanently delete posts wasn't put in to start with. It seems like a no brainer really
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "404 Error on the edit user link"</title>
<link>http://bbpress.org/forums/topic/404-error-on-the-edit-user-link#post-6353</link>
<pubDate>Tue, 03 Apr 2007 23:44:49 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6353@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;An invoice has been sent to your billing address for $215.00 to cover the support costs.&#60;/p&#62;
&#60;p&#62;=D Glad you got your solution!
&#60;/p&#62;</description>
</item>
<item>
<title>jesse0 on "404 Error on the edit user link"</title>
<link>http://bbpress.org/forums/topic/404-error-on-the-edit-user-link#post-6342</link>
<pubDate>Tue, 03 Apr 2007 22:14:50 +0000</pubDate>
<dc:creator>jesse0</dc:creator>
<guid isPermaLink="false">6342@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sorry, I should have looked harder. It can be resolved thus:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/412?replies=5&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/412?replies=5&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>jesse0 on "404 Error on the edit user link"</title>
<link>http://bbpress.org/forums/topic/404-error-on-the-edit-user-link#post-6339</link>
<pubDate>Tue, 03 Apr 2007 22:07:56 +0000</pubDate>
<dc:creator>jesse0</dc:creator>
<guid isPermaLink="false">6339@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;After I installed bbPress and integrated it with my WP installation, I'm getting a 404 error when I go to &#60;strong&#62; admin &#38;gt; users &#38;gt; edit &#60;/strong&#62;. It successfully imported my WP users, but I can't edit any of them, is this a known issue?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Jesse.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-4895</link>
<pubDate>Sun, 25 Feb 2007 23:34:43 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4895@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Maybe one of the plugin creators will make this a reality for you!    I am sure it would be a good idea!   &#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>marky on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-4806</link>
<pubDate>Fri, 23 Feb 2007 21:12:55 +0000</pubDate>
<dc:creator>marky</dc:creator>
<guid isPermaLink="false">4806@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I second this. I particularly like suggest number 2.
&#60;/p&#62;</description>
</item>
<item>
<title>acefinale5 on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-4785</link>
<pubDate>Fri, 23 Feb 2007 04:06:38 +0000</pubDate>
<dc:creator>acefinale5</dc:creator>
<guid isPermaLink="false">4785@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;In my case, I would like to see the following capabilities be added into the code:&#60;/p&#62;
&#60;p&#62;1. Deleting a particular &#34;deleted&#34; post. (e.g. I certainly wouldn't want to see a post packed with profane wordings again. NOT EVEN in my admin panel.)&#60;/p&#62;
&#60;p&#62;2. Automatic/Manual cleanup of &#34;deleted&#34; post (e.g. Removing all &#34;deleted&#34; posts that are older than 6 months / 1 year / 2 years....)&#60;/p&#62;
&#60;p&#62;3. Automatic/Manual cleanup of all posts (e.g. Removing all topics that had no replies in the last 6 months / 1 year / 2 years....)&#60;/p&#62;
&#60;p&#62;Thanks a lot!&#60;/p&#62;
&#60;p&#62;--acefinale5
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-4781</link>
<pubDate>Fri, 23 Feb 2007 03:27:03 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">4781@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Short of actually going through the database and deleting the topics using phpmyadmin, I don't know of any tool that is available to delete the posts that 'already' deleted!   I would imagine that a plugin could be written to do this for you, but in terms of space, I don't think that a post takes up very much space in the database, but your point is taken with great attention!   I would love a simple plugin to do this as well to clean up posts and topics and there are many great code writers that use this forum and I wouldn't be suprised if one comes up to do just this!&#60;/p&#62;
&#60;p&#62;Nice point!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>acefinale5 on "How to PERMANENTLY delete a post?"</title>
<link>http://bbpress.org/forums/topic/how-to-permanently-delete-a-post#post-4780</link>
<pubDate>Fri, 23 Feb 2007 03:04:09 +0000</pubDate>
<dc:creator>acefinale5</dc:creator>
<guid isPermaLink="false">4780@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi, this is a newbie to bbPress. Thanks for the great work.&#60;/p&#62;
&#60;p&#62;Just want to ask before deploying the code into a semi-production environment.&#60;br /&#62;
It's great to hear that deleted posts can be undeleted.&#60;br /&#62;
But, how am I going to clean up posts that I'm sure I no longer need anymore?&#60;br /&#62;
I pay for web hosting and don't have a very large database.&#60;br /&#62;
Thanks a lot. Take care.&#60;/p&#62;
&#60;p&#62;--acefinale5
&#60;/p&#62;</description>
</item>
<item>
<title>WiBu on "Wiki Integration: WordPress &#038; bbPress"</title>
<link>http://bbpress.org/forums/topic/wiki-integration-wordpress-038-bbpress#post-1519</link>
<pubDate>Sat, 18 Nov 2006 17:47:12 +0000</pubDate>
<dc:creator>WiBu</dc:creator>
<guid isPermaLink="false">1519@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If anyone gets anywhere with this it would be nice to see an implementation. I'm planning (currently working on) a wordpress/bbpress site that will probably need a wiki somewhere along the line.
&#60;/p&#62;</description>
</item>
<item>
<title>mjfiszman on "Wiki Integration: WordPress &#038; bbPress"</title>
<link>http://bbpress.org/forums/topic/wiki-integration-wordpress-038-bbpress#post-1501</link>
<pubDate>Fri, 17 Nov 2006 08:14:19 +0000</pubDate>
<dc:creator>mjfiszman</dc:creator>
<guid isPermaLink="false">1501@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Experimenting with AuthPress, but having some probs.&#60;/p&#62;
&#60;p&#62;Authentication seems to work fine, but users are unable to change and save their MediaWiki preferences. When users click &#34;save&#34; after changing a pref, some processing goes on but nothing gets saved. Any ideas?&#60;/p&#62;
&#60;p&#62;Running bbPress 0.73 and MediaWiki 1.68.
&#60;/p&#62;</description>
</item>
<item>
<title>mdawaffe on "User management, WP and BBP"</title>
<link>http://bbpress.org/forums/topic/user-management-wp-and-bbp#post-1372</link>
<pubDate>Mon, 13 Nov 2006 19:11:31 +0000</pubDate>
<dc:creator>mdawaffe</dc:creator>
<guid isPermaLink="false">1372@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;berg80, thanks for the info.  The documentation has been updated: &#60;a href=&#34;http://bbpress.org/documentation/integration-with-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/documentation/integration-with-wordpress/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>berg80 on "User management, WP and BBP"</title>
<link>http://bbpress.org/forums/topic/user-management-wp-and-bbp#post-1334</link>
<pubDate>Sun, 12 Nov 2006 06:25:44 +0000</pubDate>
<dc:creator>berg80</dc:creator>
<guid isPermaLink="false">1334@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I upgraded from WP 2.0.2 to 2.0.5 and everything seems to work now with the user integration.  Maybe it should say somewhere you need the latest version of Wordpress.
&#60;/p&#62;</description>
</item>
<item>
<title>berg80 on "User management, WP and BBP"</title>
<link>http://bbpress.org/forums/topic/user-management-wp-and-bbp#post-1333</link>
<pubDate>Sun, 12 Nov 2006 05:43:12 +0000</pubDate>
<dc:creator>berg80</dc:creator>
<guid isPermaLink="false">1333@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Basically the same thing is happening to me.  I have the bbpress integration plugin installed on my Wordpress blog, but when I register on BBPress, no default role is assigned for that user in Wordpress.  When I look at the Users tab in Wordpress, no group is identified for that new user.
&#60;/p&#62;</description>
</item>
<item>
<title>M on "User management, WP and BBP"</title>
<link>http://bbpress.org/forums/topic/user-management-wp-and-bbp#post-1305</link>
<pubDate>Sat, 11 Nov 2006 01:40:24 +0000</pubDate>
<dc:creator>M</dc:creator>
<guid isPermaLink="false">1305@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;English, and yes I have the bbpress integration plugin installed in my wordpress plugins, as well as the display name plugin for bbpress.&#60;/p&#62;
&#60;p&#62;I have not yet upgraded wordpress to 2.0.5, am still running 2.0.4.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
