<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; User Favorites: _ck_</title>
		<link>http://bbpress.org/forums/profile/</link>
		<description>bbPress Support Forums &#187; User Favorites: _ck_</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 15:55:18 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>lisabirdwing on "Edit Welcome Email?"</title>
			<link>http://bbpress.org/forums/topic/edit-welcome-email#post-101108</link>
			<pubDate>Wed, 04 Apr 2012 05:22:28 +0000</pubDate>
			<dc:creator>lisabirdwing</dc:creator>
			<guid isPermaLink="false">101108@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I would really love to see a plugin or upgrade that makes this easy!  For the record...
</p>]]></description>
					</item>
		<item>
			<title>PascalFromParis on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-97791</link>
			<pubDate>Thu, 02 Feb 2012 20:36:33 +0000</pubDate>
			<dc:creator>PascalFromParis</dc:creator>
			<guid isPermaLink="false">97791@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hello,</p>
<p>It's the same problem for me.</p>
<p>External links are broken. The href="externallink.com" disappear after using the code.</p>
<p>I am not a developer, just a blogger who is looking for solutions, but something seems strange to me In this line :<br />
<code><br />
$text = preg_replace('&#124;<a>]+http\:\/\/))(?!([^&#62;]+'.$domain.'))(.+)&#62;&#124;iU', '</a><a rel="nofollow">', $text); </a></code></p>
<p>It seems that all the content of ' a ' is replaced by ' a rel="nofollow" target="blank" '</p>
<p>So, the href="..."  disappear
</p>]]></description>
					</item>
		<item>
			<title>Mike1233 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90713</link>
			<pubDate>Sat, 13 Aug 2011 05:25:45 +0000</pubDate>
			<dc:creator>Mike1233</dc:creator>
			<guid isPermaLink="false">90713@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>i need this too.</p>
<p>links in new windows an with nofollow<br />
only own url links in same windows without nofollow.
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90706</link>
			<pubDate>Fri, 12 Aug 2011 20:03:58 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90706@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Still not working :(</p>
<p>The code is coming through differently in my email, so I posted a link to it making sure I have the syntax right:  <a href="http://pastie.org/2362857" rel="nofollow">http://pastie.org/2362857</a></p>
<p>Internal links are still ok; external links look like this in Firebug:<br />
<a href="https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink" rel="nofollow">https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink</a>
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90704</link>
			<pubDate>Fri, 12 Aug 2011 19:51:07 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">90704@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I just realized I am not escaping <code>&#60;</code> and <code>&#62;</code> in that code.</p>
<p>It most probably should be.</p>
<p>So anywhere you do not see a slash in front, add one, ie.</p>
<p><code>\&#60;</code></p>
<p><code>\&#62;</code></p>
<p>actually to be more clear, try this</p>
<pre><code>$text = preg_replace(&#039;&#124;\&#60;a (.*)rel=[\&#039;&#34;]nofollow[\&#039;&#34;]([^&#62;]+)?\&#62;&#124;iU&#039;,&#039;&#60;a &#62;&#039;, $text);	// strip ALL nofollow
$text = preg_replace(&#039;&#124;\&#60;a (?=([^&#62;]+http\:\/\/))(?!([^&#62;]+&#039;.$domain.&#039;))([^&#62;]+)\&#62;&#124;iU&#039;, &#039;&#60;a  rel=&#34;nofollow&#34; target=&#34;_blank&#34;&#62;&#039;, $text);</code></pre>
<p>sorry, don't have time to debug it more, someone will have to throw it into a regex tester and check it against some same sample links
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90703</link>
			<pubDate>Fri, 12 Aug 2011 19:36:44 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90703@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi @_ck_</p>
<p>Thanks for the help.  I tried what you posted, but it's still not working.  </p>
<p>It fixed the broken URLs, but strips the target="_blank" and rel="nofollow" attributes.  It looks like the second function (for external links) isn't firing off.  </p>
<p>Will keep working on it and post an update if I figure it out.</p>
<p>I really appreciate your help!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90700</link>
			<pubDate>Fri, 12 Aug 2011 17:21:14 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">90700@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Don't really have the time to debug all that but if it's selecting too much, try replacing this </p>
<p><code>(.+)</code></p>
<p>with this</p>
<p><code>([^&#62;]+)</code></p>
<p>which hopefully will stop it from going past the end of the anchor tag
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90697</link>
			<pubDate>Fri, 12 Aug 2011 16:13:04 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90697@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@_ck_, Nevermind my earlier post.  It is already working on sub-domains.  Sorry for the confusion.</p>
<p>However, I am having the same problem as @cwdnow.  Internal links are working as expected: they open in same window with "nofollow" tag removed.</p>
<p>The code is broken when it deals with external links, though.  It adds the attributes target="_blank" and rel="nofollow" but the URL is broken.  I haven't dug too deep yet, but I think the reg ex is too broad (selecting too much).  </p>
<p>Here is the code that I'm using:<br />
<a href="http://pastie.org/2361825" rel="nofollow">http://pastie.org/2361825</a></p>
<p>Here is what it is outputting:<br />
<a href="https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink" rel="nofollow">https://picasaweb.google.com/lh/photo/Px6V4Z7PfKk6Gpv5x_Uh4Q?feat=directlink</a></p>
<p>I will post an update if I figure out what it is.  In the meantime, do you happen to know what is causing this?
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-90694</link>
			<pubDate>Fri, 12 Aug 2011 14:07:43 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">90694@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@_ck_, I am using your code to open external links in a new window and add the attribute "nofollow"</p>
<p>My site also has sub-domains, so I wanted to add a case for that. My reg ex skills are not that great.  Do you know how I could do that?</p>
<p>Code I'm using:<br />
<a href="http://pastie.org/2361268" rel="nofollow">http://pastie.org/2361268</a></p>
<p>Thanks for your help!!
</p>]]></description>
					</item>
		<item>
			<title>cwdnow on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-89859</link>
			<pubDate>Sun, 17 Jul 2011 17:06:33 +0000</pubDate>
			<dc:creator>cwdnow</dc:creator>
			<guid isPermaLink="false">89859@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The long _ck_ version half works - it links, removes the nofollow tag, and adds target="_blank" to internal links. But external links aren't linked - just the CSS is applied. Could you post a pastie of the long version of your code?
</p>]]></description>
					</item>
		<item>
			<title>Real Estate Transaction Management on "bbPress Top 100, October 2010 Update"</title>
			<link>http://bbpress.org/forums/topic/bbpress-top-100-october-2010-update#post-86597</link>
			<pubDate>Wed, 20 Apr 2011 23:01:43 +0000</pubDate>
			<dc:creator>Real Estate Transaction Management</dc:creator>
			<guid isPermaLink="false">86597@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I am really surprised by those numbers.  One issue I always have is upgrading my platforms to the latest and greatest.  We are looking at using bbpress for a community portion of our product and I am encourage my the forward progress from its members.  </p>
<p>Steve
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Recount gets stuck on &quot;Counting topics to which each user has replied&quot;"</title>
			<link>http://bbpress.org/forums/topic/recount-gets-stuck-on-counting-topics-to-which-each-user-has-replied#post-82518</link>
			<pubDate>Sat, 05 Feb 2011 07:47:29 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">82518@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Okay I had never written the special routine for <em>"topics to which each user has replied"</em> so it never even appeared in the last 0.9 although Sam incorporated some of my other improved queries.</p>
<p>But I sat down and wrote it just for you now :-)</p>
<p><a href="http://bbshowcase.org/plugins/fast-recount.zip" rel="nofollow">http://bbshowcase.org/plugins/fast-recount.zip</a></p>
<p>Basically the old 0.9 bbPress api loops through each and every user and does a few queries for each one, completely overloading any server and timing out and never finishing. </p>
<p>ie. 6 queries per user x 1000 users = <em>6000</em> queries !!!!</p>
<p>My version accomplishes the exact same results with only a handful of queries right inside the mysql engine regardless of how many users, so it should always finish in under 30 seconds (unless perhaps it's millions of users)</p>
<p>Once you install and activate, under your recount menu you will see (among others)</p>
<p><strong>FAST RECOUNT topics to which each user has replied</strong></p>
<p>So check that box and leave the old one unchecked.</p>
<p>Until I have some time to fix the order in which the boxes appear, you should probably do the fast recount AFTER the other regular counts are done.</p>
<p>Oh and last but certainly not least, I highly recommend backing up your mysql database for wordpress/bbpress before using this plugin, because it's experimental and does actually delete old data before creating the new data. Something could go wrong (in theory you could run it a second time to fix the problem but always best to be safe).</p>
<p>ps. make sure you update bbpress to 0.9.0.6 too
</p>]]></description>
					</item>
		<item>
			<title>blogher8 on "Recount gets stuck on &quot;Counting topics to which each user has replied&quot;"</title>
			<link>http://bbpress.org/forums/topic/recount-gets-stuck-on-counting-topics-to-which-each-user-has-replied#post-82517</link>
			<pubDate>Sat, 05 Feb 2011 06:32:57 +0000</pubDate>
			<dc:creator>blogher8</dc:creator>
			<guid isPermaLink="false">82517@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks, _ck_!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Recount gets stuck on &quot;Counting topics to which each user has replied&quot;"</title>
			<link>http://bbpress.org/forums/topic/recount-gets-stuck-on-counting-topics-to-which-each-user-has-replied#post-82516</link>
			<pubDate>Sat, 05 Feb 2011 06:18:34 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">82516@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This may happen if you have a very large number of topics/posts/users.</p>
<p>The functions in bbPress 0.9 are very inefficient and use a horrifying number of queries that will get blocked by many servers or timeout after 30 seconds.</p>
<p>I wrote some experimental fast replacement routines, let me see if I can find them.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "bbPress database downgrade tool 1.1/1.0 -&gt; 0.9 (testers needed)"</title>
			<link>http://bbpress.org/forums/topic/bbpress-database-downgrade-utility#post-82408</link>
			<pubDate>Tue, 01 Feb 2011 16:34:20 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">82408@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Downgrade tool is on permanent delay. </p>
<p>Sorry, I simply do not have the time.</p>
<p>Restore backups from before upgrading 0.9 to 1.x
</p>]]></description>
					</item>
		<item>
			<title>blogher8 on "Recount gets stuck on &quot;Counting topics to which each user has replied&quot;"</title>
			<link>http://bbpress.org/forums/topic/recount-gets-stuck-on-counting-topics-to-which-each-user-has-replied#post-82388</link>
			<pubDate>Mon, 31 Jan 2011 20:07:13 +0000</pubDate>
			<dc:creator>blogher8</dc:creator>
			<guid isPermaLink="false">82388@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If anybody has any suggestions, I would appreciate it.  I realize it may be related to some setting my host needs to adjust.  Or perhaps a permission?
</p>]]></description>
					</item>
		<item>
			<title>dudd on "bbPress database downgrade tool 1.1/1.0 -&gt; 0.9 (testers needed)"</title>
			<link>http://bbpress.org/forums/topic/bbpress-database-downgrade-utility#post-82359</link>
			<pubDate>Sat, 29 Jan 2011 09:53:08 +0000</pubDate>
			<dc:creator>dudd</dc:creator>
			<guid isPermaLink="false">82359@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi _ck_, please need urgency your downgrade tool
</p>]]></description>
					</item>
		<item>
			<title>blogher8 on "Recount gets stuck on &quot;Counting topics to which each user has replied&quot;"</title>
			<link>http://bbpress.org/forums/topic/recount-gets-stuck-on-counting-topics-to-which-each-user-has-replied#post-81367</link>
			<pubDate>Sat, 15 Jan 2011 22:12:14 +0000</pubDate>
			<dc:creator>blogher8</dc:creator>
			<guid isPermaLink="false">81367@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi All,</p>
<p>I hope you can help.</p>
<p>I am trying to do a recount (BBPress 0.9.0.4).</p>
<p>What happens is that the first few items in the Recount list get done.  Then the system goes to</p>
<p>"Counting topics to which each user has replied..."</p>
<p>And gets stuck there.</p>
<p>I tried not checking the box for "Count topics to which each user has replied", and when I do this, the Recount function goes through every item in the list and satisfactorily completes it.  But if I check this one single box (or all of them), it always gets stuck on this step.</p>
<p>I have tried deactivating all plugins and the problem persists.
</p>]]></description>
					</item>
		<item>
			<title>Jeremyx on "Show off your Forum !!"</title>
			<link>http://bbpress.org/forums/topic/show-off-your-forum-/page/3#post-80723</link>
			<pubDate>Fri, 07 Jan 2011 12:35:44 +0000</pubDate>
			<dc:creator>Jeremyx</dc:creator>
			<guid isPermaLink="false">80723@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>My new bbPress forum for discussing Antique Prints</p>
<p><a href="http://www.antiqueprint.org">Discuss and Discover Antique Prints</a></p>
<p>i've used a custom skin, very much based on the default kakumei style.</p>
<p>I've loved working with this software.
</p>]]></description>
					</item>
		<item>
			<title>decas on "SECURITY WARNING: stop using Private Messaging plugin"</title>
			<link>http://bbpress.org/forums/topic/security-warning-stop-using-private-messaging-plugin/page/2#post-75532</link>
			<pubDate>Fri, 29 Oct 2010 09:10:29 +0000</pubDate>
			<dc:creator>decas</dc:creator>
			<guid isPermaLink="false">75532@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>is it solved? i am afraid now
</p>]]></description>
					</item>
		<item>
			<title>bobbykjack on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-74923</link>
			<pubDate>Fri, 15 Oct 2010 15:38:53 +0000</pubDate>
			<dc:creator>bobbykjack</dc:creator>
			<guid isPermaLink="false">74923@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@luminousnerd: Can you provide links to the research you've carried out? Sounds like it would be very useful.</p>
<p>I have to say, I'm sceptical about your conclusions. If "opening external links in the same windows [sic] is extremely foolish" for "someone trying to make money with their site", isn't it foolish to have those external links in the first place?
</p>]]></description>
					</item>
		<item>
			<title>cwdnow on "Open Links in new window"</title>
			<link>http://bbpress.org/forums/topic/open-links-in-new-window/page/2#post-74878</link>
			<pubDate>Thu, 14 Oct 2010 17:46:24 +0000</pubDate>
			<dc:creator>cwdnow</dc:creator>
			<guid isPermaLink="false">74878@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>None of these seem to work for me in the latest version of bbPress. Any ideas on how to get this working?
</p>]]></description>
					</item>
		<item>
			<title>Gautam on "bbPress Top 100, October 2010 Update"</title>
			<link>http://bbpress.org/forums/topic/bbpress-top-100-october-2010-update#post-74601</link>
			<pubDate>Wed, 06 Oct 2010 07:51:47 +0000</pubDate>
			<dc:creator>Gautam</dc:creator>
			<guid isPermaLink="false">74601@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Great stats!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "bbPress Top 100, October 2010 Update"</title>
			<link>http://bbpress.org/forums/topic/bbpress-top-100-october-2010-update#post-74586</link>
			<pubDate>Tue, 05 Oct 2010 14:18:26 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74586@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><em>Some interesting statistics for the entire 10,000+ collection of all bbPress installations:</em></p>
<p><strong>bbPress Version Popularity</strong><br />
<pre><code>1.1 : 1%
1.0 : 48%
0.9 : 36%
0.8 : 15%   (includes sites below 1.x that hide their version
as 0.8 has no consistent way to be detected)</code></pre>
<p><strong>PHP Popularity</strong><br />
<pre><code>5.3 : 4%
5.2 : 70%
5.1 : 4%
5.0 : 1%
4.4 : 6%
4.3 : 1%
?? : 15% (unknown)</code></pre>
<p><em>So PHP version 5 adoption has finally taken off in late 2010.</em></p>
<p><strong>Server Popularity</strong><br />
<pre><code>Apache 	 	: 40%  	  (specific version unknown)
Apache/2.2 	: 35%
Apache/2 	: 10%	  (sub-version unknown)
Apache/1.3 	: 5%
Nginx 		: 5%
Microsoft-IIS	: 3%
Litespeed 	: 2%</code></pre>
<p><em>(and quite a few others/variations but below a single percent each)</em></p>
<p><strong>Downloads via bbPress.org as of October 2010</strong><br />
<pre><code>bbPress 0.9 : 150,000+
bbPress 1.0 : 129,000+
_ck_ plugins: 102,000+ (total, all included)</code></pre>]]></description>
					</item>
		<item>
			<title>_ck_ on "bbPress Top 100, October 2010 Update"</title>
			<link>http://bbpress.org/forums/topic/bbpress-top-100-october-2010-update#post-74585</link>
			<pubDate>Tue, 05 Oct 2010 14:15:14 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74585@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bbPress is now being used in over 100 countries/regions in over <a href="http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages#post-1133">50 languages</a>!<br />
Here is a sample of the Top 50 countries/regions:<br />
<pre><code>United States
Russia
Germany
United Kingdom
Spain
France
Italy
Turkey
Poland
Brazil
Canada
China
Netherlands
Sweden
Japan
Australia
Denmark
Romania
Ukraine
Switzerland
Czech Republic
Finland
Norway
Argentina
Thailand
Bulgaria
South Africa
Iran
Hungary
Austria
Latvia
Lithuania
Belgium
New Zealand
Israel
Indonesia
Slovakia
Portugal
Tokelau
Ireland
Chile
Mexico
South Korea
Serbia
Taiwan
Saudi Arabia
Greece
Malaysia
Estonia
Philippines</code></pre>
<p>Note that the targeted audience as indicated by the flags on the right of the list is more of an art than a science, so please do not be insulted if my algorithm got it wrong. It's a combination of looking at the TLD and the declared language type being used on the page.  </p>
<p>For example a site may have a flag for Spain if Spanish is used but no other specific variation or TLD is used, etc.</p>
<p>The most popular TLDs for bbPress forums are:<br />
<pre><code>.com (by 50% !)
.org
.net
.ru
.uk
.de
.it
.info
.ca   (honourable mention as .ca has 50% less than .info
however pl, fr, nl, se and au all have over 100 sites)</code></pre>]]></description>
					</item>
		<item>
			<title>_ck_ on "bbPress Top 100, October 2010 Update"</title>
			<link>http://bbpress.org/forums/topic/bbpress-top-100-october-2010-update#post-74584</link>
			<pubDate>Tue, 05 Oct 2010 14:15:00 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74584@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>In October 2010, to make the Top 100 (out of 10,000+ installations) now requires over 50,000 posts!</p>
<p>We have a new leader <a href="http://www.singletrackworld.com/forum/">Singletrack Mountain Bike Magazine</a><br />
beating out the old champion <a href="http://forums.simonandschuster.com/">Simon &#38; Schuster</a> (international book publisher).<br />
with nearly <strong>1.8 MILLION posts</strong>. Absolutely incredible growth!</p>
<p>There are five bbPress powered forums with over a million posts now!<br />
<pre><code>singletrackworld.com  <a href="http://www.singletrackworld.com/forum/" rel="nofollow">http://www.singletrackworld.com/forum/</a>
simonandschuster.com  <a href="http://forums.simonandschuster.com/" rel="nofollow">http://forums.simonandschuster.com/</a>
wordpress.org         <a href="http://wordpress.org/support/" rel="nofollow">http://wordpress.org/support/</a>
greedyorneedy.com     <a href="http://www.greedyorneedy.com/forum/" rel="nofollow">http://www.greedyorneedy.com/forum/</a>
weddingbee.com        <a href="http://boards.weddingbee.com/" rel="nofollow">http://boards.weddingbee.com/</a></code></pre>
<p>Nearly <strong>300</strong> more have <em>over ten thousand posts</em>,<br />
and nearly <strong>1,000</strong> have <em>over one thousand posts</em>.</p>
<p>Over four dozen new bbPress powered forums are put online every week on average!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "bbPress Top 100, October 2010 Update"</title>
			<link>http://bbpress.org/forums/topic/bbpress-top-100-october-2010-update#post-74583</link>
			<pubDate>Tue, 05 Oct 2010 14:14:31 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74583@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Welcome to the final installment of the (unofficial) bbPress Top 100 !</p>
<p>This will be the last look<strong>*</strong> at the incredible growth and diversity of<br />
bbPress adoption around the world over the past several years.<br />
You can see the previous summaries here via the <a href="http://bbpress.org/forums/tags/top100">Top100 tag</a>.</p>
<p><a href="http://bbshowcase.org/forums/view/top100" rel="nofollow">http://bbshowcase.org/forums/view/top100</a></p>
<p>The list is based on post count which implies highest activity.<br />
Sites that appear to fake the numbers or have dubious content<br />
have been moved to the bottom of the Top 10,000</p>
<p>To see the complete Top 10,000 requires free registration/login:<br />
<a href="http://bbshowcase.org/forums/view/top10000" rel="nofollow">http://bbshowcase.org/forums/view/top10000</a></p>
<p>Logged in users can also search the list and view the experimental<br />
Tag Cloud  <a href="http://bbshowcase.org/forums/view/top10000?cloud" rel="nofollow">http://bbshowcase.org/forums/view/top10000?cloud</a><br />
and vote on sites that may have superior design even if  they didn't<br />
make the Top 100 regardless of their volume of activity.</p>
<p>This list does not include most of the 1000+ or so BuddyPress installations<br />
that use bbPress to power sub-forums for their groups. This is for technical<br />
reasons, not political - it's virtually impossible to analyze bbPress under<br />
BuddyPress because of how it's filtered and blocked. If you have a large<br />
bbPress installation under BuddyPress and you are not in the current list,<br />
contact me for a way to be included if your site would fall in the top 1,000.</p>
<p><strong>*</strong><em>The upcoming rewrite of bbPress will make this kind of third-party analysis<br />
extremely difficult but also unneccesary since it will start to "phone home"<br />
as part of WordPress to Automattic on a daily basis from  your server<br />
with all your details, configuration and install information anyway.</em></p>
<p><strong>So on that note, let's take a look at the results from the final list!</strong>
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Here&#039;s a plugin to explore tag history by user or topic (or tag)"</title>
			<link>http://bbpress.org/forums/topic/heres-a-plugin-to-explore-tag-history-by-user-or-topic-or-tag#post-74219</link>
			<pubDate>Thu, 23 Sep 2010 14:58:08 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74219@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><strong>I've now added experimental support for bbPress 1.x</strong><br />
starting with version 0.0.4 </p>
<p>Looking for feedback from those running a realworld, robust 1.x setup as I only have a test install.</p>
<p>Personally I also think it looks better in 0.9 but that's just me.</p>
<p>It cannot damage anything during testing as it's a read-only kind of plugin (for now).
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Here&#039;s a plugin to explore tag history by user or topic (or tag)"</title>
			<link>http://bbpress.org/forums/topic/heres-a-plugin-to-explore-tag-history-by-user-or-topic-or-tag#post-74181</link>
			<pubDate>Wed, 22 Sep 2010 16:42:34 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74181@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I noticed this morning it's tricky in bbpress to figure out who tagged what, when.</p>
<p>So now this plugin will help admin explore how those tags got there or if spammers have snuck in any stray tags.</p>
<p>Install, activate and look under the Manage menu.</p>
<p>Click on the numbers next to the items to "drill down" on those tags.</p>
<p>Let me know if you have feature ideas or find bugs.</p>
<p>--</p>
<p>okay it's on the SVN now with a couple of tweaks/fixes</p>
<p>so you can get it from there</p>
<p><a href="http://plugins-svn.bbpress.org/tag-history/trunk/" rel="nofollow">http://plugins-svn.bbpress.org/tag-history/trunk/</a></p>
<p><a href="http://bbpress.org/plugins/topic/tag-history/" rel="nofollow">http://bbpress.org/plugins/topic/tag-history/</a>
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Topic paging issue"</title>
			<link>http://bbpress.org/forums/topic/topic-paging-issue/page/2#post-74002</link>
			<pubDate>Thu, 16 Sep 2010 22:06:32 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">74002@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Kakumei doesn't have post numbering from what I see, neither does inove.</p>
<p>Take a peek inside your <code>post.php</code> template and tell me what's between<br />
<code>&#60;div class=&#34;postnumber&#34;&#62; &#60;/div&#62;</code> </p>
<p>It's also possible that it is in <code>topic.php</code> instead.
</p>]]></description>
					</item>

	</channel>
</rss>

