<?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: users</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: users</description>
<language>en</language>
<pubDate>Mon, 07 Jul 2008 02:24:28 +0000</pubDate>

<item>
<title>joneywalker4u on "can't log in anymore"</title>
<link>http://bbpress.org/forums/topic/cant-log-in-anymore#post-16223</link>
<pubDate>Wed, 14 May 2008 09:20:10 +0000</pubDate>
<dc:creator>joneywalker4u</dc:creator>
<guid isPermaLink="false">16223@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oops then the username got deleted from database!&#60;br /&#62;
Is it true that both jen and admin don't work either in wp or bbpress?&#60;/p&#62;
&#60;p&#62;If yes then you may have to add that to database via some SQL query or register again. But if you register again it will be registered as normal user and you won't have admin rights, since there is no admin present so who will assign this new user, the admin powers.&#60;/p&#62;
&#60;p&#62;Register as some username xyz and look in the userlist the entries that exist wheather or not admin/jen is listed.
&#60;/p&#62;</description>
</item>
<item>
<title>hijen on "can't log in anymore"</title>
<link>http://bbpress.org/forums/topic/cant-log-in-anymore#post-16212</link>
<pubDate>Tue, 13 May 2008 18:52:03 +0000</pubDate>
<dc:creator>hijen</dc:creator>
<guid isPermaLink="false">16212@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can't use the forgot password option; it just says this:&#60;/p&#62;
&#60;p&#62;&#34;This username does not exist. Register it?&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>joneywalker4u on "can't log in anymore"</title>
<link>http://bbpress.org/forums/topic/cant-log-in-anymore#post-16112</link>
<pubDate>Sat, 10 May 2008 06:41:41 +0000</pubDate>
<dc:creator>joneywalker4u</dc:creator>
<guid isPermaLink="false">16112@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;try forgot password option, see if database responds to the query i.e username and password entries are there. then password will be mailed to your ID.
&#60;/p&#62;</description>
</item>
<item>
<title>hijen on "can't log in anymore"</title>
<link>http://bbpress.org/forums/topic/cant-log-in-anymore#post-16097</link>
<pubDate>Fri, 09 May 2008 15:52:30 +0000</pubDate>
<dc:creator>hijen</dc:creator>
<guid isPermaLink="false">16097@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just installed bbpress on my site with a username &#34;jen&#34;.  After it was installed, I went into the settings and integrated it with my wordpress user database.  However, now I cannot log in -- &#34;jen&#34; no longer exists and my &#34;admin&#34; wordpress user doesn't exist either.  What did I do wrong and how can I log back in?  &#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Getting user session info on non forum page"</title>
<link>http://bbpress.org/forums/topic/getting-user-session-info-on-non-forum-page#post-15783</link>
<pubDate>Sat, 26 Apr 2008 03:45:16 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">15783@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You'll need to use the PHP functions to check the cookies... bbpress doesn't use sessions by default.&#60;/p&#62;
&#60;p&#62;Also, you wouldn't want to simply use the userid, because that would be insecure since anybody could hack a cookie with any username.&#60;/p&#62;
&#60;p&#62;bbPress and WP both store two cookies, the username and the encrypted hash of the password. You'll have to use those in combination to do a lookup to the database to make sure they both match. I'd advise taking a look through the bbpress source code... it's not terribly difficult to understand.&#60;/p&#62;
&#60;p&#62;The other thing you could do... you could create a plugin / hack for bbPress to assign a session parameter after a successful login, which you could then check for in your other code.
&#60;/p&#62;</description>
</item>
<item>
<title>irr1449 on "Getting user session info on non forum page"</title>
<link>http://bbpress.org/forums/topic/getting-user-session-info-on-non-forum-page#post-15782</link>
<pubDate>Sat, 26 Apr 2008 00:43:56 +0000</pubDate>
<dc:creator>irr1449</dc:creator>
<guid isPermaLink="false">15782@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't have the code infront of me right now, but is it just going to be something like&#60;/p&#62;
&#60;p&#62;$_SESSION['whatever']&#60;/p&#62;
&#60;p&#62;And then that would give me the userId which I could then query the users table with?
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Getting user session info on non forum page"</title>
<link>http://bbpress.org/forums/topic/getting-user-session-info-on-non-forum-page#post-15777</link>
<pubDate>Fri, 25 Apr 2008 20:22:26 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">15777@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I assume this is a non-WP page as well?&#60;/p&#62;
&#60;p&#62;You can check the bbpress session cookie and then use that to check the user against the database. You'd have to use the same logic that WP or BB uses (the latest bbpress changes this logic). You'll also need to make sure that the cookie domain is set correctly.&#60;/p&#62;
&#60;p&#62;I've actually had to do this recently myself... it's pretty simple and works well.
&#60;/p&#62;</description>
</item>
<item>
<title>irr1449 on "Getting user session info on non forum page"</title>
<link>http://bbpress.org/forums/topic/getting-user-session-info-on-non-forum-page#post-15757</link>
<pubDate>Fri, 25 Apr 2008 13:46:07 +0000</pubDate>
<dc:creator>irr1449</dc:creator>
<guid isPermaLink="false">15757@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm using WP/BBP as a site wide CMS.  It's been really great so far thanks to the light-weightness of bbPress.   I've really just had to hack the tables and change a little code to get the extra info in there that I want.&#60;/p&#62;
&#60;p&#62;The only issues I'm wondering about is how to get the user data on a non bbPress page... I need to see if the user is logged in, and then get their userId...&#60;/p&#62;
&#60;p&#62;Just to give you an example, I allow the user to save certain things, and I use the user id from the wp/bbpress users table.  Can anyone suggest a light weight way to do this?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Key Master unable to edit users"</title>
<link>http://bbpress.org/forums/topic/key-master-unable-to-edit-users#post-15404</link>
<pubDate>Tue, 15 Apr 2008 16:39:03 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15404@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Do you have access to any error logs?
&#60;/p&#62;</description>
</item>
<item>
<title>mikehaynes on "Key Master unable to edit users"</title>
<link>http://bbpress.org/forums/topic/key-master-unable-to-edit-users#post-15399</link>
<pubDate>Tue, 15 Apr 2008 16:14:30 +0000</pubDate>
<dc:creator>mikehaynes</dc:creator>
<guid isPermaLink="false">15399@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Still no luck with my issue. I've been looking through the code but can't pinpoint the problem...
&#60;/p&#62;</description>
</item>
<item>
<title>precious-forever on "using bb_users with integrated setup"</title>
<link>http://bbpress.org/forums/topic/using-bb_users-with-integrated-setup#post-15361</link>
<pubDate>Mon, 14 Apr 2008 10:47:32 +0000</pubDate>
<dc:creator>precious-forever</dc:creator>
<guid isPermaLink="false">15361@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;that's what i did, but it doesn't work. all users that registered with bbpress before the update, are shown as &#34;anonymous&#34;. and also, some of the other users are getting mixed up ...
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "how to restrct users to start a new topic and post"</title>
<link>http://bbpress.org/forums/topic/how-to-restrct-users-to-start-a-new-topic-and-post#post-15347</link>
<pubDate>Sun, 13 Apr 2008 19:05:50 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15347@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is a tricky problem. &#60;/p&#62;
&#60;p&#62;It's easy to remove the ability entirely to post new topics for all forums (by removing the ability from the &#34;member&#34; role) but to keep a forum visible but not allow a new topic to be created would require   intercepting the forum list from the &#34;add new post&#34; sections.&#60;/p&#62;
&#60;p&#62;If you can live with not allowing any member to create a new topic you can do this:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/only-key-holders-add-topics#post-15339&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/only-key-holders-add-topics#post-15339&#60;/a&#62;&#60;br /&#62;
Then only moderators and above could create topics.&#60;/p&#62;
&#60;p&#62;This request comes up at least once a month, someone might try to tackle it someday (but don't look at me!)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "using bb_users with integrated setup"</title>
<link>http://bbpress.org/forums/topic/using-bb_users-with-integrated-setup#post-15336</link>
<pubDate>Sun, 13 Apr 2008 18:09:58 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15336@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just set up the &#34;user role map&#34; in the &#34;WordPress integration&#34; section of the bbPress admin area.
&#60;/p&#62;</description>
</item>
<item>
<title>precious-forever on "using bb_users with integrated setup"</title>
<link>http://bbpress.org/forums/topic/using-bb_users-with-integrated-setup#post-15288</link>
<pubDate>Fri, 11 Apr 2008 21:54:16 +0000</pubDate>
<dc:creator>precious-forever</dc:creator>
<guid isPermaLink="false">15288@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this order: WP 2.3, bbpress 0.8 (no integration with plugins at that time!), WP 2.5, bbpress 0.9&#60;/p&#62;
&#60;p&#62;I patently waited with integration until 0.9 was out since I did not understand the whole thing before. And everything seems to work fine. Just as soon as I add the WP_ prefix setting to my bbpress config, it seems as if bbpress can only access the WP users anymore (with the correct role mapping i set up etc.).&#60;/p&#62;
&#60;p&#62;maybe I should just ask all registered users to reregister after integration, since the forum is pretty new anyway ;-)
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "using bb_users with integrated setup"</title>
<link>http://bbpress.org/forums/topic/using-bb_users-with-integrated-setup#post-15263</link>
<pubDate>Fri, 11 Apr 2008 15:50:18 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">15263@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Was your bbpress setup before you installed WordPress?&#60;br /&#62;
Or did WordPress exist before bbPress?  If you had bbPress first, the userbase is actually inside bbPress and not WordPress. It needs to be moved to WordPress (or some different settings in WordPress to use the user db in bbPress). I call that &#34;reverse integration&#34;.&#60;/p&#62;
&#60;p&#62;But I'm missing a detail here - did you have working integration with WordPress+bbPress before you upgraded both to latest?&#60;/p&#62;
&#60;p&#62;This might be an issue with the two parts of the &#34;secret key&#34; not being setup/synced properly between the two.&#60;/p&#62;
&#60;p&#62;I think this is a similar problem posted here (that was never answered)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/bbpress-09-released#post-14973&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/bbpress-09-released#post-14973&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>precious-forever on "using bb_users with integrated setup"</title>
<link>http://bbpress.org/forums/topic/using-bb_users-with-integrated-setup#post-15261</link>
<pubDate>Fri, 11 Apr 2008 15:10:14 +0000</pubDate>
<dc:creator>precious-forever</dc:creator>
<guid isPermaLink="false">15261@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey there,&#60;/p&#62;
&#60;p&#62;my problem/question might be funny, but I just don't get it. Just upgraded bbpress to 0.9.1 and set it up to be integrated with wordpress 2.5 (they both share the same DB).&#60;/p&#62;
&#60;p&#62;in the bbpress config, i have the WP_ prefix set and everything seems to sync well.&#60;/p&#62;
&#60;p&#62;But now all posts in the bbpress forums done by users that registered at the bbpress forums are signed as &#34;Anonymous&#34; and all these users are neither listed in the bbpress nor in the worspress admin.&#60;/p&#62;
&#60;p&#62;To test, i removed the WP_prefix from the bbpress config, then these users are back, but for sure this is not the idea since i'd like to integrate both things.&#60;/p&#62;
&#60;p&#62;Am I getting this all wrong, or is there any way to &#34;import&#34; the bbpress users into WP or something (without manually editing the database)?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;br /&#62;
Christophe
&#60;/p&#62;</description>
</item>
<item>
<title>mikehaynes on "Key Master unable to edit users"</title>
<link>http://bbpress.org/forums/topic/key-master-unable-to-edit-users#post-15148</link>
<pubDate>Tue, 08 Apr 2008 15:21:50 +0000</pubDate>
<dc:creator>mikehaynes</dc:creator>
<guid isPermaLink="false">15148@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah, I can edit other stuff around the forum just not members. Yes, this is a new install.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Key Master unable to edit users"</title>
<link>http://bbpress.org/forums/topic/key-master-unable-to-edit-users#post-15126</link>
<pubDate>Tue, 08 Apr 2008 05:16:16 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15126@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;CHMODing files probably won't help you. Is this a new install? Can you do other things like post and edit topics?
&#60;/p&#62;</description>
</item>
<item>
<title>mikehaynes on "Key Master unable to edit users"</title>
<link>http://bbpress.org/forums/topic/key-master-unable-to-edit-users#post-15111</link>
<pubDate>Mon, 07 Apr 2008 15:19:14 +0000</pubDate>
<dc:creator>mikehaynes</dc:creator>
<guid isPermaLink="false">15111@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was thinking it might have something to do with CHMOD settings on the profile pages...anyone?
&#60;/p&#62;</description>
</item>
<item>
<title>mikehaynes on "Key Master unable to edit users"</title>
<link>http://bbpress.org/forums/topic/key-master-unable-to-edit-users#post-15088</link>
<pubDate>Sun, 06 Apr 2008 23:05:33 +0000</pubDate>
<dc:creator>mikehaynes</dc:creator>
<guid isPermaLink="false">15088@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;When I enter my admin section, while logged in as the Key Master, and try to change things like custom titles or even user types of users in my forum, the changes don't stick when I hit &#34;Update User&#34;. Is there any solution to this?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "New User created in WP does not keep wp_roles mapping"</title>
<link>http://bbpress.org/forums/topic/new-user-created-in-wp-does-not-keep-wp_roles-mapping#post-15016</link>
<pubDate>Fri, 04 Apr 2008 04:04:33 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15016@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The bbPress role will not be applied for users created in WordPress until the user logs in to bbPress.
&#60;/p&#62;</description>
</item>
<item>
<title>nuprn1 on "New User created in WP does not keep wp_roles mapping"</title>
<link>http://bbpress.org/forums/topic/new-user-created-in-wp-does-not-keep-wp_roles-mapping#post-15005</link>
<pubDate>Fri, 04 Apr 2008 03:13:31 +0000</pubDate>
<dc:creator>nuprn1</dc:creator>
<guid isPermaLink="false">15005@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Fresh install of WP2.5 and BB.9.0.1&#60;/p&#62;
&#60;p&#62;Within bbpress admin, i setup the maps to from WP -&#38;gt; BB roles&#60;/p&#62;
&#60;p&#62;When creating a new user from the WP admin screen, selecting a role of any selection, it will default to the standard member. (verifying by looking under the bb admin user screen)&#60;/p&#62;
&#60;p&#62;My solution was to just change the bb_capabilities meta_value to the desired role level of new seeded users.
&#60;/p&#62;</description>
</item>
<item>
<title>affacat on "Usernames with spaces do not work"</title>
<link>http://bbpress.org/forums/topic/usernames-with-spaces-do-not-work/page/2#post-14755</link>
<pubDate>Thu, 27 Mar 2008 20:41:53 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">14755@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks, worked for me.
&#60;/p&#62;</description>
</item>
<item>
<title>phaniraj01 on "how to restrct users to start a new topic and post"</title>
<link>http://bbpress.org/forums/topic/how-to-restrct-users-to-start-a-new-topic-and-post#post-14641</link>
<pubDate>Mon, 24 Mar 2008 06:50:21 +0000</pubDate>
<dc:creator>phaniraj01</dc:creator>
<guid isPermaLink="false">14641@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Dear Team,&#60;/p&#62;
&#60;p&#62;I  want to restrict users not to start new topic in certain forums .&#60;/p&#62;
&#60;p&#62;But they can view all forums,&#60;br /&#62;
please help me.&#60;br /&#62;
thanks,&#60;br /&#62;
phani
&#60;/p&#62;</description>
</item>
<item>
<title>fpslabs on "Add Moderators and Admin"</title>
<link>http://bbpress.org/forums/topic/add-moderators-and-admin#post-14464</link>
<pubDate>Fri, 14 Mar 2008 16:35:29 +0000</pubDate>
<dc:creator>fpslabs</dc:creator>
<guid isPermaLink="false">14464@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;oh wow, lol I didn't even see that.  I told you I might be stupid ;)  Thanks man
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Add Moderators and Admin"</title>
<link>http://bbpress.org/forums/topic/add-moderators-and-admin#post-14462</link>
<pubDate>Fri, 14 Mar 2008 09:01:20 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">14462@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;When logged in as an admin or keymaster you can promote a user using their edit profile page in the front end of your site.&#60;/p&#62;
&#60;p&#62;There probably should be a way to do it in the admin, but there isn't yet.
&#60;/p&#62;</description>
</item>
<item>
<title>fpslabs on "Add Moderators and Admin"</title>
<link>http://bbpress.org/forums/topic/add-moderators-and-admin#post-14460</link>
<pubDate>Fri, 14 Mar 2008 07:54:01 +0000</pubDate>
<dc:creator>fpslabs</dc:creator>
<guid isPermaLink="false">14460@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Perhaps I am stupid, which I like to believe that I am not.  However, I have searched through documentation, search results here and on google, and scoured the backend.  I still can not find a way to promote users to moderator or keymaster/admin status.  One method for promotion I thought of was to copy the mysql entry for my capabilities into that of another user, but I have no such entry to copy from for moderators.  Should the promotion/demotion of users be something part of the software?  Does it exist and I am not seeing it?  Please help at your convenience.&#60;/p&#62;
&#60;p&#62;Thanks in advance,&#60;br /&#62;
Stu
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Pulling users from BBpress into Wordpress"</title>
<link>http://bbpress.org/forums/topic/pulling-users-from-bbpress-into-wordpress#post-13923</link>
<pubDate>Mon, 18 Feb 2008 12:34:21 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">13923@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I call this &#34;reverse integration&#34;. &#60;/p&#62;
&#60;p&#62;Unless there is something I am overlooking, I believe  the easiest way to do this is to use phpmyadmin to either rename or export bb_users and bb_usermeta to  wp_users and wp_usermeta.&#60;/p&#62;
&#60;p&#62;(you'd have to get rid of the existing wp_users wp_usermeta first of course)&#60;/p&#62;
&#60;p&#62;Then you will need my fix-admin-access plugin to restore access to the WP admin panel since your role will no longer exist. This assumes you as the keymaster are user #1.&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/fix-admin-access/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/fix-admin-access/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>CirceDesign on "Pulling users from BBpress into Wordpress"</title>
<link>http://bbpress.org/forums/topic/pulling-users-from-bbpress-into-wordpress#post-13881</link>
<pubDate>Sat, 16 Feb 2008 04:00:24 +0000</pubDate>
<dc:creator>CirceDesign</dc:creator>
<guid isPermaLink="false">13881@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Can anyone help me with this problem?&#60;/p&#62;
&#60;p&#62;I need play-by-play instructions on importing user info from an already existing BBpress database to a fresh Wordpress install. Can anyone help me? &#60;/p&#62;
&#60;p&#62;Thank you so much!
&#60;/p&#62;</description>
</item>
<item>
<title>finalwebsites on "Pre-Installation: Spam and User Numbers"</title>
<link>http://bbpress.org/forums/topic/pre-installation-spam-and-user-numbers#post-13341</link>
<pubDate>Thu, 24 Jan 2008 08:38:34 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">13341@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi Trent, thanks for the feedback!&#60;/p&#62;
&#60;p&#62;just checked the suggested plugin and using some activation code makes sense. Is this something for the bbress core version? And is this really needed? At the moment I have ~50 new registrations a day because people need to register to download some PHP classes from my website.&#60;/p&#62;
&#60;p&#62;Sure some of them have entered their URL to the profile, but this is not accessible until thy made a first post.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
