<?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 Topic: Anonymous posting</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Anonymous posting</description>
<language>en</language>
<pubDate>Sun, 07 Sep 2008 20:45:43 +0000</pubDate>

<item>
<title>so1o on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-16398</link>
<pubDate>Thu, 22 May 2008 16:02:47 +0000</pubDate>
<dc:creator>so1o</dc:creator>
<guid isPermaLink="false">16398@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/bb-anonymous-posting/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/bb-anonymous-posting/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;hope this help.. works with 0.9.0.2
&#60;/p&#62;</description>
</item>
<item>
<title>t3ch33 on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-13848</link>
<pubDate>Fri, 15 Feb 2008 03:39:23 +0000</pubDate>
<dc:creator>t3ch33</dc:creator>
<guid isPermaLink="false">13848@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is almost working for me. My bbpress was already active, so i didn't want to run the modified install file. Here is the code that's in the bb-admin/install.php file:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// Anonymous User
 	$now        = bb_current_time(&#38;#39;mysql&#38;#39;);
 	$bbdb-&#38;gt;query(&#38;quot;INSERT INTO $bbdb-&#38;gt;users (user_login, user_registered)
 	VALUES (&#38;#39;anonymous&#38;#39;, &#38;#39;$now&#38;#39;)&#38;quot;);
 	$bbdb-&#38;gt;query(&#38;quot;UPDATE $bbdb-&#38;gt;users SET ID = &#38;#39;0&#38;#39; WHERE user_login = &#38;#39;anonymous&#38;#39;&#38;quot;);
 	bb_update_usermeta( &#38;#39;0&#38;#39;, $bb_table_prefix . &#38;#39;capabilities&#38;#39;, array(&#38;#39;anonymous&#38;#39; =&#38;gt; true) );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Since my bbpress is already active, I have manually updated my users table by following the guideline in the above code. But, I have no idea what the last line of code means: &#60;code&#62;bb_update_usermeta( &#38;#39;0&#38;#39;, $bb_table_prefix . &#38;#39;capabilities&#38;#39;, array(&#38;#39;anonymous&#38;#39; =&#38;gt; true) );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Can you modify it so that I can manually update the db or do whatever needs to be done to make it work? Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>matt123 on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-11012</link>
<pubDate>Wed, 19 Sep 2007 21:30:52 +0000</pubDate>
<dc:creator>matt123</dc:creator>
<guid isPermaLink="false">11012@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the code! Tried it out and it works. Right now akismet is catching a large percentage of the spam. If that changes I'm going to implement your solution!
&#60;/p&#62;</description>
</item>
<item>
<title>bbpressfriend on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10850</link>
<pubDate>Fri, 07 Sep 2007 14:13:28 +0000</pubDate>
<dc:creator>bbpressfriend</dc:creator>
<guid isPermaLink="false">10850@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Replace (in anonymous.php):&#60;/p&#62;
&#60;p&#62;&#60;code&#62; 	add_action('bb_new_post', 'bb_anonymous_posting_add_post_poster');&#60;br /&#62;
 	function bb_anonymous_posting_add_post_poster($post_id) {&#60;br /&#62;
 	        global $bbdb;&#60;br /&#62;
 	        $name = bb_get_current_user_info( 'name' );&#60;br /&#62;
 	        $bbdb-&#38;gt;query(&#34;UPDATE $bbdb-&#38;gt;posts SET poster_name = '$name' WHERE post_id = '$post_id'&#34;);&#60;br /&#62;
 	}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;with&#60;/p&#62;
&#60;p&#62;&#60;code&#62; 	add_action('bb_new_post', 'bb_anonymous_posting_add_post_poster');&#60;br /&#62;
 	function bb_anonymous_posting_add_post_poster($post_id) {&#60;br /&#62;
 	        global $bbdb;&#60;br /&#62;
 	        $name = bb_get_current_user_info( 'name' );&#60;br /&#62;
 	        $bbdb-&#38;gt;query(&#34;UPDATE $bbdb-&#38;gt;posts SET poster_name = '$name' WHERE post_id = '$post_id'&#34;);&#60;br /&#62;
 	        $bbdb-&#38;gt;query(&#34;UPDATE $bbdb-&#38;gt;posts SET post_status = '1' WHERE post_id = '$post_id'&#34;);&#60;br /&#62;
 	}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now, new Posts are automaticly marked as spam. You can go to your admin area and undelete them (if its not spam) :D&#60;/p&#62;
&#60;p&#62;sorry for my bad english, im german :)
&#60;/p&#62;</description>
</item>
<item>
<title>matt123 on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10842</link>
<pubDate>Thu, 06 Sep 2007 23:40:27 +0000</pubDate>
<dc:creator>matt123</dc:creator>
<guid isPermaLink="false">10842@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't follow. Could you please explain?
&#60;/p&#62;</description>
</item>
<item>
<title>bbpressfriend on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10800</link>
<pubDate>Wed, 05 Sep 2007 20:41:27 +0000</pubDate>
<dc:creator>bbpressfriend</dc:creator>
<guid isPermaLink="false">10800@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just set the Post_status to &#34;1&#34; if the poster is anonymous and check your ACP daily :) (sorry for my bad english)
&#60;/p&#62;</description>
</item>
<item>
<title>rashantha on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10790</link>
<pubDate>Wed, 05 Sep 2007 16:47:32 +0000</pubDate>
<dc:creator>rashantha</dc:creator>
<guid isPermaLink="false">10790@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;actually a post validator.&#60;/p&#62;
&#60;p&#62;then we could have annonymous/anon username/password with a validator to slow down bots.
&#60;/p&#62;</description>
</item>
<item>
<title>matt123 on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10774</link>
<pubDate>Wed, 05 Sep 2007 00:02:44 +0000</pubDate>
<dc:creator>matt123</dc:creator>
<guid isPermaLink="false">10774@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Goto the link I mentioned copy and save as a php file.&#60;br /&#62;
anonymous.php.txt&#60;/p&#62;
&#60;p&#62;Then read: Ticket-633.2.patch You have to follow the directions hacking up the core files.&#60;/p&#62;
&#60;p&#62;If your not comfortable with bbpress probably should avoid this one cause you'll be messing with the core files.&#60;/p&#62;
&#60;p&#62;Anyone know of a sign-up validator for bbpress?
&#60;/p&#62;</description>
</item>
<item>
<title>rashantha on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10769</link>
<pubDate>Tue, 04 Sep 2007 18:51:36 +0000</pubDate>
<dc:creator>rashantha</dc:creator>
<guid isPermaLink="false">10769@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;can you please be a bit more specific. newbie here, an example would be helpful.&#60;/p&#62;
&#60;p&#62;also can you add a calculation field so that it will stop spam bots.
&#60;/p&#62;</description>
</item>
<item>
<title>matt123 on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10726</link>
<pubDate>Mon, 03 Sep 2007 05:51:10 +0000</pubDate>
<dc:creator>matt123</dc:creator>
<guid isPermaLink="false">10726@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Why do you think it's such a bad idea to use this trac plugin? &#60;/p&#62;
&#60;p&#62;rashantha-you have to copy the plugin and follow the example of what files to hack to make it work.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10646</link>
<pubDate>Fri, 31 Aug 2007 20:08:56 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">10646@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I suggest NOT TO USE this trac plugin. It isn't official and wont work correct on the current bbPress release. It is created to work IF some modifications are done in bbPress itself.
&#60;/p&#62;</description>
</item>
<item>
<title>rashantha on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10626</link>
<pubDate>Fri, 31 Aug 2007 01:30:36 +0000</pubDate>
<dc:creator>rashantha</dc:creator>
<guid isPermaLink="false">10626@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i don't see any instruction on how to use this code. do you have any tips?
&#60;/p&#62;</description>
</item>
<item>
<title>matt123 on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-10619</link>
<pubDate>Thu, 30 Aug 2007 22:58:57 +0000</pubDate>
<dc:creator>matt123</dc:creator>
<guid isPermaLink="false">10619@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just wanted to put up a link to where to find the code to make anonymous posting happen. It took me a lot of searching before I found it. Works like a charm only problem is that it tries to let you pm the anonymous person.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/ticket/633&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/633&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-5616</link>
<pubDate>Sat, 17 Mar 2007 12:52:48 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5616@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This has been discussed and is not in development, AFAIK:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/238?replies=8#post-2066&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/238?replies=8#post-2066&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>poots on "Anonymous posting"</title>
<link>http://bbpress.org/forums/topic/anonymous-posting#post-5614</link>
<pubDate>Sat, 17 Mar 2007 09:37:50 +0000</pubDate>
<dc:creator>poots</dc:creator>
<guid isPermaLink="false">5614@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I haven't searched the forums yet, but i would like to enable anonymous posting. I feel anonymous posting stimulates discussion, instead of letting a forum just become a well managed resource board.  Its certainly debate able.... but my goal would be an board that supports anonymous posting and was tag based. Allowing you to link to the board based on tags, so people could quickly jump into relevant topics of conversation.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
