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

<item>
<title>affacat on "A question about 'inactive' members."</title>
<link>http://bbpress.org/forums/topic/a-question-about-inactive-members#post-14830</link>
<pubDate>Sun, 30 Mar 2008 22:07:49 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">14830@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I changed one user (already marked in DB as a member) to 'moderator', saved, then back to 'member', saved... and everyone that was showing as inactive started showing as 'member'.  I have no idea what was going on and i'm going to pretend it didn't happen.
&#60;/p&#62;</description>
</item>
<item>
<title>affacat on "A question about 'inactive' members."</title>
<link>http://bbpress.org/forums/topic/a-question-about-inactive-members#post-14829</link>
<pubDate>Sun, 30 Mar 2008 22:01:56 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">14829@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Odd.  About 3/4 of my members are marked inactive.  All of them have a record in wp_user_meta with the data:&#60;br /&#62;
bb_capabilities  	a:1:{s:6:&#34;member&#34;;b:1;}&#60;/p&#62;
&#60;p&#62;So... Yea. I don't understand quite what's going on here.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "A question about 'inactive' members."</title>
<link>http://bbpress.org/forums/topic/a-question-about-inactive-members#post-14828</link>
<pubDate>Sun, 30 Mar 2008 20:49:51 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14828@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I *believe* someone becomes inactive only if you mark them inactive.  You can change the user status by going to their profile page, then clicking the edit tab, as keymaster.&#60;/p&#62;
&#60;p&#62;I've never seen it happen automatically. And, on the edit tab of the profile page, there is a description on the bottom of what blocked and inactive mean.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Inactive users can login and look around but not do anything.
Blocked users just see a simple error message when they visit
the site.

Note: Blocking a user does not block any IP addresses.&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>affacat on "A question about 'inactive' members."</title>
<link>http://bbpress.org/forums/topic/a-question-about-inactive-members#post-14820</link>
<pubDate>Sun, 30 Mar 2008 16:11:55 +0000</pubDate>
<dc:creator>affacat</dc:creator>
<guid isPermaLink="false">14820@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What determines if a user is 'inactive'? And what does it mean?&#60;/p&#62;
&#60;p&#62;And, more importantly, how can i change the settings?
&#60;/p&#62;</description>
</item>
<item>
<title>luca.iz on "setting default role to inactive for new registered users"</title>
<link>http://bbpress.org/forums/topic/setting-default-role-to-inactive-for-new-registered-users#post-13795</link>
<pubDate>Wed, 13 Feb 2008 20:33:49 +0000</pubDate>
<dc:creator>luca.iz</dc:creator>
<guid isPermaLink="false">13795@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;many thanks Chris!  I have tested your second example (pluggable.php, row 361 etc.) was exactly what I needed!  &#60;/p&#62;
&#60;p&#62;I agree with you that a plugin would be nice, and also it would be even nicer to be able to set new users default role somewhere in the admin interface, but for the moment your suggestion just work.&#60;/p&#62;
&#60;p&#62;thanks again!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "setting default role to inactive for new registered users"</title>
<link>http://bbpress.org/forums/topic/setting-default-role-to-inactive-for-new-registered-users#post-13779</link>
<pubDate>Wed, 13 Feb 2008 16:49:17 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">13779@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The default role is set in bb-includes/capabilities.php around line 485 &#60;/p&#62;
&#60;p&#62;&#60;code&#62;$user-&#38;gt;set_role(&#38;#39;member&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This is a job for a plugin, but I haven't tried to write one yet, so if you were to change that word &#60;code&#62;member&#60;/code&#62; to &#60;code&#62;inactive&#60;/code&#62;, my guess would be that that would make any new member inactive and then the keymaster would need to edit their role to make them members.&#60;/p&#62;
&#60;p&#62;ACTUALLY - that didn't work :D&#60;/p&#62;
&#60;p&#62;In bb-includes/pluggable.php, line 361 says this:&#60;br /&#62;
&#60;code&#62;bb_update_usermeta( $user_id, $bb_table_prefix . &#38;#39;capabilities&#38;#39;, array(&#38;#39;member&#38;#39; =&#38;gt; true) );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I changed &#60;strong&#62;member&#60;/strong&#62; to &#60;strong&#62;inactive&#60;/strong&#62; there, and now new users are inactive when they first register.&#60;/p&#62;
&#60;p&#62;Like I said, this is really a job for a plugin, but you could probably use this last change temporarily until a proper plugin is written.&#60;/p&#62;
&#60;p&#62;HTH, and be warned this is not a good way of doing it.  It should really be a plugin I think.
&#60;/p&#62;</description>
</item>
<item>
<title>luca.iz on "setting default role to inactive for new registered users"</title>
<link>http://bbpress.org/forums/topic/setting-default-role-to-inactive-for-new-registered-users#post-13767</link>
<pubDate>Wed, 13 Feb 2008 12:49:50 +0000</pubDate>
<dc:creator>luca.iz</dc:creator>
<guid isPermaLink="false">13767@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hello all.&#60;/p&#62;
&#60;p&#62;I have tried some search about this but did not find anything.&#60;/p&#62;
&#60;p&#62;I'd need the new users on a bbPress forum to be set to Inactive by default.&#60;/p&#62;
&#60;p&#62;the reason is I need to set up a forum for an experiment in secondary schools.  we have to take in account the possibility of rude behavior from people not participating to the experiment.&#60;/p&#62;
&#60;p&#62;the administrator is not likely to be very present on line, so it would be a problem if anybody could just register and start posting indesiderable contents, that could sit there for a while.&#60;/p&#62;
&#60;p&#62;a temporary fix would be setting the default role for users to Inactive (the administrator then has the possibility to verify that the user is really who he say to be).  I've tried to look into the code, but was not able to figure it out how to do it.  hints would be welcomed.&#60;/p&#62;
&#60;p&#62;another option (the one I'm currently adopting) is removing the register function and putting something like &#34;write to this email address if you want to be registered&#34;, then using this plugin to allow administrator to add users:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/admin-add-user/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/admin-add-user/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but this is not how really we want it to be.  an example of it is the &#34;candidate&#34; system used in vanilla forum: you candidate yourself to be a member of the forum, and if admin agree then you're in.  (why then not using vanilla?  because there's a graphic customization people have worked into, and we are running very short on deadline, say the url is in this morning newspaper... :-) ).&#60;/p&#62;
&#60;p&#62;I'd also be grateful for any other suggestions.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
