<?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: blocked</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: blocked</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 02:42:39 +0000</pubDate>

<item>
<title>Nightgunner5 on "blocking a user does nothing"</title>
<link>http://bbpress.org/forums/topic/blocking-a-user-does-nothing#post-17545</link>
<pubDate>Wed, 23 Jul 2008 00:58:11 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">17545@http://bbpress.org/forums/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;&#60;code&#62;I don&#38;#39;t see how a user could both be logged in AND have a broken password. If their password is broken, they can&#38;#39;t login.&#60;/code&#62;&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Maybe they were still logged in while they got blocked.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "blocking a user does nothing"</title>
<link>http://bbpress.org/forums/topic/blocking-a-user-does-nothing#post-17542</link>
<pubDate>Wed, 23 Jul 2008 00:21:06 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17542@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh wait, here's the broken part in &#60;code&#62;bb-settings.php&#60;/code&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;do_action(&#38;#39;bb_init&#38;#39;, &#38;#39;&#38;#39;);

if ( bb_is_user_logged_in() &#38;#38;&#38;#38; bb_has_broken_pass() )
	bb_block_current_user();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I don't see how a user could both be logged in AND have a broken password.  If their password is broken, they can't login.&#60;/p&#62;
&#60;p&#62;This might have broken during the radical password/cookie changes in &#38;gt;0.8&#60;/p&#62;
&#60;p&#62;I opened a TRAC ticket&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/899&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/899&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "blocking a user does nothing"</title>
<link>http://bbpress.org/forums/topic/blocking-a-user-does-nothing#post-17541</link>
<pubDate>Wed, 23 Jul 2008 00:08:47 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17541@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Block may never have worked like one would think.&#60;br /&#62;
I think it just treats them like &#34;bozo&#34; status.&#60;br /&#62;
It gives them the capability of  &#34;not_play_nice&#34; = true&#60;/p&#62;
&#60;p&#62;hmm actually...&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function bb_block_current_user() {
	global $bbdb;
	if ( $id = bb_get_current_user_info( &#38;#39;id&#38;#39; ) )
		bb_update_usermeta( $id, $bbdb-&#38;gt;prefix . &#38;#39;been_blocked&#38;#39;, 1 ); // Just for logging.
	bb_die(__(&#38;quot;You&#38;#39;ve been blocked.  If you think a mistake has been made, contact this site&#38;#39;s administrator.&#38;quot;));
}&#60;/code&#62;&#60;/pre&#62;
&#60;pre&#62;&#60;code&#62;function bb_reset_password( $key ) {
	global $bbdb;
	$key = sanitize_user( $key );
	if ( empty( $key ) )
		bb_die(__(&#38;#39;Key not found.&#38;#39;));
	if ( !$user_id = $bbdb-&#38;gt;get_var( $bbdb-&#38;gt;prepare( &#38;quot;SELECT user_id FROM $bbdb-&#38;gt;usermeta WHERE meta_key = &#38;#39;newpwdkey&#38;#39; AND meta_value = %s&#38;quot;, $key ) ) )
		bb_die(__(&#38;#39;Key not found.&#38;#39;));
	if ( $user = new BB_User( $user_id ) ) :
		if ( bb_has_broken_pass( $user-&#38;gt;ID ) )
			bb_block_current_user();
		if ( !$user-&#38;gt;has_cap( &#38;#39;change_user_password&#38;#39;, $user-&#38;gt;ID ) )
			bb_die( __(&#38;#39;You are not allowed to change your password.&#38;#39;) );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;br /&#62;
According to all that, their password should be scrambled and they should be unable to reset it - so they can't log in.&#60;/p&#62;
&#60;p&#62;But you can't stop them from seeing the website.&#60;br /&#62;
There's no IP based blocking (yet) in bbPress.&#60;/p&#62;
&#60;p&#62;To really block an IP, you'd have to go into htaccess and add a &#34;deny from&#34; - at least for now.&#60;/p&#62;
&#60;p&#62;I guess someone could write a plugin to block the IP of blocked users, perhaps for 48 hours or so. Since bbPress doesn't store the last login IP for users by default, this makes it difficult, the plugin would have to start storing IPs  on every login.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "blocking a user does nothing"</title>
<link>http://bbpress.org/forums/topic/blocking-a-user-does-nothing#post-17537</link>
<pubDate>Tue, 22 Jul 2008 20:36:37 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17537@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I confirmed this as well.  I created a new member, logged out, logged in as admin, marked new member blocked, logged out, logged in as new member, everything appears fine.  In the admin panel, the user is marked as blocked.&#60;/p&#62;
&#60;p&#62;So, what *is* supposed to happen when a blocked member tries to log in?&#60;/p&#62;
&#60;p&#62;I noticed that the blocked member cannot edit their profile: there's just one tab there: Profile.
&#60;/p&#62;</description>
</item>
<item>
<title>Nightgunner5 on "blocking a user does nothing"</title>
<link>http://bbpress.org/forums/topic/blocking-a-user-does-nothing#post-17535</link>
<pubDate>Tue, 22 Jul 2008 20:02:34 +0000</pubDate>
<dc:creator>Nightgunner5</dc:creator>
<guid isPermaLink="false">17535@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Right under the place roles are changed is the text:&#60;/p&#62;
&#60;p&#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.&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;However, when I made a test account and marked it as blocked, I could still log in with the account and there was no error message.&#60;/p&#62;
&#60;p&#62;Why is this a problem and how can I fix this?&#60;/p&#62;
&#60;p&#62;P.S. I tried this on a test install of trunk and a test install of 0.9.0.2, both gave the same result.&#60;/p&#62;
&#60;p&#62;Edit: I just found out that blocking breaks passwords reversably, and only gives an error message if the user is already logged in.
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "Blocking User is not working"</title>
<link>http://bbpress.org/forums/topic/blocking-user-is-not-working#post-10242</link>
<pubDate>Fri, 17 Aug 2007 10:03:05 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">10242@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;any help please?
&#60;/p&#62;</description>
</item>
<item>
<title>zapata on "Blocking User is not working"</title>
<link>http://bbpress.org/forums/topic/blocking-user-is-not-working#post-10234</link>
<pubDate>Fri, 17 Aug 2007 01:52:47 +0000</pubDate>
<dc:creator>zapata</dc:creator>
<guid isPermaLink="false">10234@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I usually set the status to &#34;Blocked&#34; in bbPress whenever one of the group blog authors leaves or retires, so as to block the author of my WordPress blog from accessing the bbPress too. &#60;/p&#62;
&#60;p&#62;But today I retired an author and changed the status to Blocked in bbPress but find that the author can still log in... &#60;/p&#62;
&#60;p&#62;I simply want the author blocked and not deleted, as the authors' posts will still be active on the Wordpress blog. &#60;/p&#62;
&#60;p&#62;I may be mistaken but I thought Blocked had worked for me in the past. Could a new version of &#34;Role Manager&#34; plugin in my wordpress be messing this up...&#60;/p&#62;
&#60;p&#62;or is there anyway to make &#34;Blocked&#34; work again? would appreciate any help on this.
&#60;/p&#62;</description>
</item>
<item>
<title>rimian on "Registration spam &#038; Akismet"</title>
<link>http://bbpress.org/forums/topic/registration-spam-038-akismet#post-6388</link>
<pubDate>Thu, 05 Apr 2007 04:59:29 +0000</pubDate>
<dc:creator>rimian</dc:creator>
<guid isPermaLink="false">6388@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Trent that sounds like a clever solution.&#60;/p&#62;
&#60;p&#62;I've just written a workaround for my site by renaming a few of the form fields with str_replace on the /register.php page and then modifying the $_POST  array on the mytemplate/register.php page to listen for these renamed fields.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Registration spam &#038; Akismet"</title>
<link>http://bbpress.org/forums/topic/registration-spam-038-akismet#post-6274</link>
<pubDate>Sun, 01 Apr 2007 14:20:25 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">6274@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There is a plugin to &#60;a href=&#34;http://bbpress.org/plugins/topic/44?replies=1&#34;&#62;limit registration&#60;/a&#62; on your bbPress and I use the Custom Profile plugin myself for helping in spam registration.    I just create a couple of 'required fields' followed by a couple 'non required fields' and then end with 'another required field' for registration.   No bot has figured it out yet.....!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>rimian on "Registration spam &#038; Akismet"</title>
<link>http://bbpress.org/forums/topic/registration-spam-038-akismet#post-6270</link>
<pubDate>Sun, 01 Apr 2007 11:50:48 +0000</pubDate>
<dc:creator>rimian</dc:creator>
<guid isPermaLink="false">6270@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Only one a day? I bet you get more now. I get one every 2 hours.&#60;/p&#62;
&#60;p&#62;I'd like to know how they find my site. I'm going through my logs to see how.
&#60;/p&#62;</description>
</item>
<item>
<title>ear1grey on "Registration spam &#038; Akismet"</title>
<link>http://bbpress.org/forums/topic/registration-spam-038-akismet#post-3171</link>
<pubDate>Sat, 13 Jan 2007 00:27:57 +0000</pubDate>
<dc:creator>ear1grey</dc:creator>
<guid isPermaLink="false">3171@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've cranked out a trac &#60;a href=&#34;http://trac.bbpress.org/ticket/542&#34;&#62;ticket&#60;/a&#62; for this, though it's not clear if the Akismet code is part of the core or not.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Registration spam &#038; Akismet"</title>
<link>http://bbpress.org/forums/topic/registration-spam-038-akismet#post-3109</link>
<pubDate>Fri, 12 Jan 2007 06:08:54 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">3109@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I use Ardentfrosts plugin even on sites that I don't show the memberlist to the public for this very reason.   It works great.   It even works now with the integration and using WP users.    While this is a short term solution for me, I really hope that registrations can be 'anti spammed' as well.   It is annoying because all BOZO's make it over in the WP side with integration....&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Registration spam &#038; Akismet"</title>
<link>http://bbpress.org/forums/topic/registration-spam-038-akismet#post-3095</link>
<pubDate>Thu, 11 Jan 2007 14:54:05 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">3095@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Install my Member List plugin.  It makes it VERY easy to delete users.  I spend 30 seconds doing it every few days.&#60;/p&#62;
&#60;p&#62;If you couple it with the onlinelist by... who did that one, mbyte?  Anyhow, if you install that one too, you can see if the user has ever visited your site from their profile menu so you don't delete any REAL users.&#60;/p&#62;
&#60;p&#62;I know it's not the best solution (the best being one that is automatic) but it's a quick one.
&#60;/p&#62;</description>
</item>
<item>
<title>ear1grey on "Registration spam &#038; Akismet"</title>
<link>http://bbpress.org/forums/topic/registration-spam-038-akismet#post-3094</link>
<pubDate>Thu, 11 Jan 2007 10:34:58 +0000</pubDate>
<dc:creator>ear1grey</dc:creator>
<guid isPermaLink="false">3094@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;My bbpress forum is now averaging one registration spam per day - where a user registers, adds their pills or porn site details to the &#60;code&#62;website&#60;/code&#62; field, then never visits again.&#60;/p&#62;
&#60;p&#62;Check your registrations guys 'n' gals, you may find you have a lot of unwanted members (*cough*) linked from your sites.&#60;/p&#62;
&#60;p&#62;I'm thinking it's time registration requests went through Akismet - but for this to happen there would have to be a UI for spotting false positives.&#60;/p&#62;
&#60;p&#62;See also: &#60;a href=&#34;http://bbpress.org/forums/topic/494&#34;&#62;Links to bozos and blocked users&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>ear1grey on "Links to Bozos and Blocked Users"</title>
<link>http://bbpress.org/forums/topic/links-to-bozos-and-blocked-users#post-2780</link>
<pubDate>Mon, 01 Jan 2007 22:14:37 +0000</pubDate>
<dc:creator>ear1grey</dc:creator>
<guid isPermaLink="false">2780@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Indeed, though I've only seen once instance so far where the spammers have bothered to leave a comment.  My guess is that it's too difficult to write a robot that can leave intelligent spam, so they're hedging their bets and hoping not to be spotted lurking in the profile pages - if you can achieve that on several thousand instances you've suddenly got a whole lot of pagerank coming your way.&#60;/p&#62;
&#60;p&#62;Perhaps another useful tool would be to list the lurkers (similar to how bozos &#38;#38; blocked users can be listed in the &#60;code&#62;Users&#60;/code&#62; admin tab) where &#60;code&#62;a lurker&#60;/code&#62; is someone who's registered but not commented.
&#60;/p&#62;</description>
</item>
<item>
<title>thomasklaiber on "Links to Bozos and Blocked Users"</title>
<link>http://bbpress.org/forums/topic/links-to-bozos-and-blocked-users#post-2779</link>
<pubDate>Mon, 01 Jan 2007 21:39:06 +0000</pubDate>
<dc:creator>thomasklaiber</dc:creator>
<guid isPermaLink="false">2779@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The next thing is, every Username links to the Website, too.&#60;/p&#62;
&#60;p&#62;But as i looked quickly throuh the functions I think this is something for a core change. The users website is passed from &#60;code&#62;get_profile_info_keys()&#60;/code&#62; in an array to &#60;code&#62;bb_profile_data()&#60;/code&#62;. This function generates the data-List and makes the Link clickable .. but there is no point where you can add a Plugin.&#60;/p&#62;
&#60;p&#62;The array from &#60;code&#62;get_profile_info_keys()&#60;/code&#62; is passed trough a filter, maybe something like a &#60;code&#62;if (in_array(...))&#60;/code&#62; in the filter ...?&#60;/p&#62;
&#60;p&#62;Just a thought...
&#60;/p&#62;</description>
</item>
<item>
<title>ear1grey on "Links to Bozos and Blocked Users"</title>
<link>http://bbpress.org/forums/topic/links-to-bozos-and-blocked-users#post-2775</link>
<pubDate>Mon, 01 Jan 2007 19:31:31 +0000</pubDate>
<dc:creator>ear1grey</dc:creator>
<guid isPermaLink="false">2775@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm seeing registrations for users whose &#34;website&#34; URL is very dubious (including adult stuff that would make most people blush).  They're obviously only registering for the link because they don't leave any comments.  &#60;/p&#62;
&#60;p&#62;If the admin goes along with the recommended action of marking the user as blocked (rather than deleting), then their link is still visible in the profile page.  i.e. They win.&#60;/p&#62;
&#60;p&#62;So I'm imagining a core enhancement or a plugin that adds a filter so that any user who is marked as bozo/blocked has their details passed through a sanitizer which removes anything that looks like a URL before it's passed to the UI.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
