<?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; Tag: security - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/security</link>
		<description>bbPress Support Forums &#187; Tag: security - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 13:43:36 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/security" rel="self" type="application/rss+xml" />

		<item>
			<title>_ck_ on "Question: is _ck_&#039;s security patch for 0.9 still needed for 0.9.0.7?"</title>
			<link>http://bbpress.org/forums/topic/question-is-_ck_s-security-patch-for-09-still-needed-for-0907#post-97856</link>
			<pubDate>Sat, 04 Feb 2012 10:35:53 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">97856@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>0.9 users should upgrade to (or start with) the 0.9 branch<br />
which was the final version of 0.9</p>
<p>but 0.9.0.7 appears to simply be a copy of the final 0.9 branch</p>
<p>browse <a href="http://bbpress.trac.wordpress.org/browser/branches/0.9" rel="nofollow">http://bbpress.trac.wordpress.org/browser/branches/0.9</a></p>
<p>zip <a href="http://bbpress.trac.wordpress.org/changeset/3730/branches/0.9?old_path=%2F&#038;format=zip" rel="nofollow">http://bbpress.trac.wordpress.org/changeset/3730/branches/0.9?old_path=%2F&#038;format=zip</a></p>
<p>svn co <a href="http://svn.automattic.com/bbpress/branches/0.9/" rel="nofollow">http://svn.automattic.com/bbpress/branches/0.9/</a></p>
<p>From what I can tell, JJJ just copied the branch over to make "0.9.0.7" </p>
<p><a href="http://bbpress.trac.wordpress.org/changeset/3517" rel="nofollow">http://bbpress.trac.wordpress.org/changeset/3517</a><br />
<a href="http://bbpress.trac.wordpress.org/changeset/3535" rel="nofollow">http://bbpress.trac.wordpress.org/changeset/3535</a><br />
<a href="http://bbpress.trac.wordpress.org/log/tags/0.9.0.7/bb-includes?rev=3535" rel="nofollow">http://bbpress.trac.wordpress.org/log/tags/0.9.0.7/bb-includes?rev=3535</a></p>
<p>That's all he did, there were no other changes, improvements or fixes.</p>
<p>But there really are some fixes in the final 0.9 branch over 0.9.0.6</p>
<p>There were 12 files changed from 0.9.0.6 to 0.9.0.7 (aka 0.9 branch)</p>
<p><a href="http://bbpress.trac.wordpress.org/changeset?old_path=%2Ftags%2F0.9.0.6&#038;old=2338+&#038;new_path=%2Ftags%2F0.9.0.7&#038;new=3715" rel="nofollow">http://bbpress.trac.wordpress.org/changeset?old_path=%2Ftags%2F0.9.0.6&#038;old=2338+&#038;new_path=%2Ftags%2F0.9.0.7&#038;new=3715</a></p>
<p>bb-includes/default-filters.php (1 diff)<br />
bb-includes/wp-functions.php (2 diffs)<br />
bb-includes/pluggable.php (1 diff)<br />
bb-includes/functions.php (3 diffs)<br />
bb-includes/registration-functions.php (1 diff)<br />
bb-includes/template-functions.php (3 diffs)<br />
bb-includes/compat.php (1 diff)<br />
search.php (1 diff)<br />
bb-plugins/akismet.php (4 diffs)<br />
bb-admin/bb-do-counts.php (3 diffs)<br />
bb-admin/admin.php (1 diff)<br />
bb-admin/admin-functions.php (2 diffs)</p>
<p>It's hard to be 100% positive but I am pretty sure they addressed the base64 decoding bug.</p>
<p>Those with 0.9.0.6 can replace just these files to upgrade to 0.9.0.7<br />
<a href="http://bbpress.trac.wordpress.org/changeset?format=zip&#038;new=3715&#038;old=2338&#038;new_path=%2Ftags%2F0.9.0.7&#038;old_path=%2Ftags%2F0.9.0.6" rel="nofollow">http://bbpress.trac.wordpress.org/changeset?format=zip&#038;new=3715&#038;old=2338&#038;new_path=%2Ftags%2F0.9.0.7&#038;old_path=%2Ftags%2F0.9.0.6</a><br />
(those running versions before 0.9.0.6 will need more files from a fuller upgrade, do not use just the above files as it will break your install)</p>
<p>Everyone should still use my mini-plugin to protect bbpress and wordpress for yet-unidentified security issues. It's better than nothing. You can even remove the header and just copy the one <code>IF</code> block to your <code>bb-config.php</code> and <code>wp-config.php</code></p>
<p>If <code>256</code> characters turns out to be too short of a URL restriction, some may need to raise it as high as <code>1024</code>, for example in WordPress where it stupidly uses GET now to mass delete posts, which was a dumbfounding move on their part.</p>
<pre><code>&#60;?php
/*
Plugin Name: Block Long/Bad Queries (for bbPress and WordPress)
*/

if (strlen($_SERVER[&#039;REQUEST_URI&#039;])&#62;1024 &#124;&#124;
preg_match(&#039;@(eval&#124;base64&#124;unescape)[^a-zA-Z0-9]@si&#039;,$_SERVER[&#039;REQUEST_URI&#039;]))
{
	header(&#039;HTTP/1.1 414 Request-URI Too Long&#039;);
	header(&#039;Status: 414 Request-URI Too Long&#039;);
	header(&#039;Connection: Close&#039;);
	exit;
}</code></pre>]]></description>
					</item>
		<item>
			<title>blogher8 on "Question: is _ck_&#039;s security patch for 0.9 still needed for 0.9.0.7?"</title>
			<link>http://bbpress.org/forums/topic/question-is-_ck_s-security-patch-for-09-still-needed-for-0907#post-97852</link>
			<pubDate>Sat, 04 Feb 2012 07:09:09 +0000</pubDate>
			<dc:creator>blogher8</dc:creator>
			<guid isPermaLink="false">97852@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I hope _ck_ or someone else can answer.</p>
<p>I have 0.9.0.7 installed.</p>
<p>I just saw _ck_'s post here about a security patch plugin: <a href="http://bbpress.org/forums/topic/bbpress-103-released#post-84690" rel="nofollow">http://bbpress.org/forums/topic/bbpress-103-released#post-84690</a></p>
<p>Ten months ago, _ck_ wrote,</p>
<p>"bbPress 0.9 users should install my unofficial "block-long-queries" mini-plugin to avoid the security bug that 1.0.3 fixes and similar unknown attacks in the future.<br />
(it also works in 1.0 and WordPress)"</p>
<p>Since it seems like 0.9.0.7 came out five months later, I am wondering if this new release covers the patch or if it is still needed.</p>
<p>Note that I searched extensively for a post about the 0.9.0.7 release and the changes it represented, but I can't see anything like that.</p>
<p>Also, I can't ask in the original thread because it was closed.</p>
<p>Thanks!
</p>]]></description>
					</item>
		<item>
			<title>pimarts on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on/page/2#post-90241</link>
			<pubDate>Thu, 28 Jul 2011 21:06:21 +0000</pubDate>
			<dc:creator>pimarts</dc:creator>
			<guid isPermaLink="false">90241@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Pretty excited to see if you can find another topic to paste that link into.
</p>]]></description>
					</item>
		<item>
			<title>UG-Ltd.de on "Restrict or limit login attempts"</title>
			<link>http://bbpress.org/forums/topic/restrict-or-limit-login-attempts#post-89324</link>
			<pubDate>Sun, 03 Jul 2011 12:14:07 +0000</pubDate>
			<dc:creator>UG-Ltd.de</dc:creator>
			<guid isPermaLink="false">89324@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>For security reasons there should be a way to restrict or limit failed login attempts. Because now bbpress also shows when username or password or both was/ were wrong. So hacking a profile is simpler than it should be.<br />
Is there a way, maybe in template files to limit the possible attempts? Maybe three failed logins per hour - or something like this.<br />
Thank you!
</p>]]></description>
					</item>
		<item>
			<title>justmichael2 on "Security"</title>
			<link>http://bbpress.org/forums/topic/security-1#post-86419</link>
			<pubDate>Thu, 14 Apr 2011 21:56:19 +0000</pubDate>
			<dc:creator>justmichael2</dc:creator>
			<guid isPermaLink="false">86419@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I have a blog that is integrated with my WordPress blog.  Just testing it out for now.</p>
<p>- What options are available to keep our Spam and other spurious sign-ups? How can I protect my integrated WP user database?</p>
<p>Thanks!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "here&#039;s how to solve the &quot;path disclosure&quot; bug in bbPress"</title>
			<link>http://bbpress.org/forums/topic/heres-how-to-solve-the-path-disclosure-bug-in-bbpress#post-85951</link>
			<pubDate>Tue, 29 Mar 2011 21:31:45 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">85951@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Because you cannot disable access for all files in the template directory - CSS and some images have to be loaded directly by the browsers in the end.</p>
<p>So turning off PHP responses will do for now.
</p>]]></description>
					</item>
		<item>
			<title>qayqay12 on "here&#039;s how to solve the &quot;path disclosure&quot; bug in bbPress"</title>
			<link>http://bbpress.org/forums/topic/heres-how-to-solve-the-path-disclosure-bug-in-bbpress#post-85948</link>
			<pubDate>Tue, 29 Mar 2011 18:16:52 +0000</pubDate>
			<dc:creator>qayqay12</dc:creator>
			<guid isPermaLink="false">85948@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If there are never supposed to be loaded directly by the browser maybe we could also deny the access by another .htaccess config:</p>
<p>&#60;Limit GET POST"&#62;<br />
order deny,allow<br />
deny from all<br />
&#60;/Limit&#62;</p>
<p>Why don't you add those .htaccess files in the repository. They will ensure security and they will not hurt on other servers than apache.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "here&#039;s how to solve the &quot;path disclosure&quot; bug in bbPress"</title>
			<link>http://bbpress.org/forums/topic/heres-how-to-solve-the-path-disclosure-bug-in-bbpress#post-85947</link>
			<pubDate>Tue, 29 Mar 2011 16:45:29 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">85947@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There is a security bulletin being circulated this week about a "path disclosure" bug in bbPress 1.0.3 - it actually affects all versions.</p>
<p>It's not a super-serious security bug in itself but it can be used to gain leverage.</p>
<p>Basically someone can discover the real path your files are in by causing a PHP error by trying to access a template file directly, where there is an error in the template because bbPress is not loaded at that time.</p>
<p>Here is a simple workaround for users on Apache (vast majority of users).</p>
<p>Make a file called  <code>.htaccess</code>  (note the dot at the start)</p>
<p>in it, put this line<br />
<pre><code>php_flag display_errors off</code></pre>
<p>Then upload that file to <code>bb-templates</code> and <code>my-templates</code></p>
<p>The reason why we don't put that in the master <code>.htaccess</code> file for all of bbPress is because you may need to see any regular errors in the future. However for the template subdirectories, there is no need because those files are never (supposed to be) loaded directly by the browser.
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact/page/2#post-84800</link>
			<pubDate>Mon, 14 Mar 2011 06:53:53 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">84800@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Correct. 1.0.3 contains several security fixes to the existing 1.0 branch of code, which means no new major features or changes happened and it includes fixes to existing bugs.</p>
<p>1.1 will see a release candidate soon.</p>
<p>There was no announcement for 1.0.3 because when I tagged it, it required a new tag of BackPress and BuddyPress needed to be changed too. With 1.1 and the plugin coming soon, it just never got an official announcement.</p>
<p>On a more personal note,  my resources and bandwidth are spread between several projects at the moment, so switching contexts quickly is something I'm adjusting more to. An announcement about 1.0.3 will happen when an RC for 1.1 goes out, which should be in the next few days.
</p>]]></description>
					</item>
		<item>
			<title>Ashfame on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact/page/2#post-84687</link>
			<pubDate>Sun, 13 Mar 2011 16:04:31 +0000</pubDate>
			<dc:creator>Ashfame</dc:creator>
			<guid isPermaLink="false">84687@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks for the tip!</p>
<p>Do you mean that 1.0.3 only contains the security fix applied on 1.0.2?
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact/page/2#post-84686</link>
			<pubDate>Sun, 13 Mar 2011 14:58:05 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">84686@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Trac unfortunately doesn't disclose where the tag was created from, the only documentation is the comment JJJ made.</p>
<p><a href="http://trac.bbpress.org/changeset/2930" rel="nofollow">http://trac.bbpress.org/changeset/2930</a></p>
<p>However it's easy to test.</p>
<p>Checkout a copy from the trunk, then do a "switch" to tag/1.0.3 and see what files (if any are changed). </p>
<p>The SVN itself may disclose more details but let's see what happens...</p>
<p>ah no, I forgot the trunk is actually 1.1</p>
<p>Yeah 1.0.3 is a branch from 1.0.2, not the trunk.</p>
<p>If a fix wasn't committed to the 1.0 branch, it won't be in 1.0.3</p>
<p>But you can always use the trunk for 1.1 preview
</p>]]></description>
					</item>
		<item>
			<title>Ashfame on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact/page/2#post-84685</link>
			<pubDate>Sun, 13 Mar 2011 14:00:38 +0000</pubDate>
			<dc:creator>Ashfame</dc:creator>
			<guid isPermaLink="false">84685@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@_ck_ Can you take a look at the Trac for 1.3<br />
There was some talk that 1.0.3 was copied from the 1.0 branch and may not have all the fixes that were in the trunk. Unfortunately, I am not experienced with source control software so can't make much sense out of it.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact/page/2#post-84684</link>
			<pubDate>Sun, 13 Mar 2011 12:09:50 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">84684@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>They just announced it to the world this morning so I hope the 1.x users have upgraded to 1.0.3</p>
<p><a href="http://seclists.org/fulldisclosure/2011/Mar/155" rel="nofollow">http://seclists.org/fulldisclosure/2011/Mar/155</a></p>
<p>I suspect it was not enough time but there never is.</p>
<p>Note that my "block-long-queries" mini-plugin will protect you from this kind of attack and other yet unknown ones via the URL (GET requests)</p>
<p><a href="http://bbpress.org/forums/topic/bbpress-103-released#post-84690" rel="nofollow">http://bbpress.org/forums/topic/bbpress-103-released#post-84690</a></p>
<p>It will work in both bbPress and WordPress</p>
<p>There is really no reason to allow URIs to be longer than 255 characters but apache will allow up to 4000 by default which can carry a massive payload. I have seen some wordpress installs that need that limit bumped up to 320 or even 512, something about the akismet plugin needs very long URIs for some bad reason.
</p>]]></description>
					</item>
		<item>
			<title>Ashfame on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact/page/2#post-82511</link>
			<pubDate>Fri, 04 Feb 2011 21:56:50 +0000</pubDate>
			<dc:creator>Ashfame</dc:creator>
			<guid isPermaLink="false">82511@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Alright! Your call.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact#post-82504</link>
			<pubDate>Fri, 04 Feb 2011 17:02:13 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">82504@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@Ashfame, the bug is not really a showstopper and I am researching another possible issue.</p>
<p>I need to update "check-for-updates" though.
</p>]]></description>
					</item>
		<item>
			<title>Ashfame on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact#post-82501</link>
			<pubDate>Fri, 04 Feb 2011 16:41:33 +0000</pubDate>
			<dc:creator>Ashfame</dc:creator>
			<guid isPermaLink="false">82501@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>CK, I think it would be best to create a new topic also and sticky it!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact#post-82500</link>
			<pubDate>Fri, 04 Feb 2011 16:40:24 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">82500@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Speaking of security, anyone using bb-attachments should please update to 0.2.8 </p>
<p>(you'll only need to update <code>bb-attachments-init.php</code>)
</p>]]></description>
					</item>
		<item>
			<title>citizenkeith on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact#post-82360</link>
			<pubDate>Sat, 29 Jan 2011 14:13:26 +0000</pubDate>
			<dc:creator>citizenkeith</dc:creator>
			<guid isPermaLink="false">82360@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks for the reply, JJJ. I'm not a developer, so when I go to trac I'm easily overwhelmed by the number of tickets and not sure where to look for specifics.</p>
<p>Sometimes it's frustrating for users like me to get information about bbPress developments. I'd expect news to be posted here on the forum. Then there's bbpdevel.wordpress.com, but that hasn't been updated since September. I'm sure there's info in IRC logs too. It seems there are many places for information to be posted, and it's not always the place I expect it.</p>
<p>Anyway, I really do appreciate the information, and I'm looking forward to 1.1 (and also an update to the 0.9 branch).
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact#post-82201</link>
			<pubDate>Thu, 27 Jan 2011 00:40:23 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">82201@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The news is in trac. There's one ticket left in 1.1 and then it gets released. No sense in putting out a 1.0.4 to fix one bug that 1.1 will fix. Right now we're in the middle of a WordPress, BuddyPress, bbPress trifecta release, so there's three times as much testing to do to make sure nothing breaks.</p>
<p>If you can't wait for a public release, download the trunk and do some testing. :)
</p>]]></description>
					</item>
		<item>
			<title>xtreme164 on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-82192</link>
			<pubDate>Wed, 26 Jan 2011 22:57:29 +0000</pubDate>
			<dc:creator>xtreme164</dc:creator>
			<guid isPermaLink="false">82192@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>thanks to share this great help...!
</p>]]></description>
					</item>
		<item>
			<title>citizenkeith on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact#post-82186</link>
			<pubDate>Wed, 26 Jan 2011 16:24:36 +0000</pubDate>
			<dc:creator>citizenkeith</dc:creator>
			<guid isPermaLink="false">82186@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Really? No news or updates??
</p>]]></description>
					</item>
		<item>
			<title>Willabee on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81943</link>
			<pubDate>Sun, 23 Jan 2011 22:41:31 +0000</pubDate>
			<dc:creator>Willabee</dc:creator>
			<guid isPermaLink="false">81943@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@ ricardouk<br />
Uhm, not that I don't understand you, but you do need to understand that we as developers need to eat too, so I don't mind that extra's on a cms/platform are only optional for developers.</p>
<p>And the greatest things in life just aren't free.</p>
<p>That said, I do believe the bbPress WordPress plugin will get an easy intergration eventually.
</p>]]></description>
					</item>
		<item>
			<title>ricardouk on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81940</link>
			<pubDate>Sun, 23 Jan 2011 20:46:58 +0000</pubDate>
			<dc:creator>ricardouk</dc:creator>
			<guid isPermaLink="false">81940@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>i've been following the chat on the bbpress plugin thread and altough JJJ said somewhere that it will be possible it reallly doesnt seem (to me) that the plugin is going that way.</p>
<p>wordpress will use one theme and bbpress as a plugin will need its own theme.</p>
<p>@devs<br />
dont read my comments as destructive but i feel as a user the need to voice my opinion, as a user i dont have the "god like" ability to master css/php or port my wordpress theme to a bbpress theme, its like you're creating a forum plugin and making it difficult to use or integrate visually with wordpress...a forum plugin only for the "code masters". try and go the simple:press or mingle forum way or have that possibility.
</p>]]></description>
					</item>
		<item>
			<title>wilcosky on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81939</link>
			<pubDate>Sun, 23 Jan 2011 19:45:35 +0000</pubDate>
			<dc:creator>wilcosky</dc:creator>
			<guid isPermaLink="false">81939@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey what do you mean by the new bbpress won't be "theme integration friendly"? I'm looking for a forum that will easily integrate with my wordpress site. I was going to hold out for this new bbpress plugin, but I'm curious to know what you're talking about. Does that mean it's going to be difficult to make the new bbpress theme match your existing theme's look?
</p>]]></description>
					</item>
		<item>
			<title>gswaim on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81932</link>
			<pubDate>Sun, 23 Jan 2011 14:43:07 +0000</pubDate>
			<dc:creator>gswaim</dc:creator>
			<guid isPermaLink="false">81932@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@ricardouk</p>
<p>I share many of your concerns. I too have stumbled onto the Mingle Forum plug-in.</p>
<p>I have it installed along with the Mingle plug-in. This turns a WordPress site into a BuddyPress-like site with an extremely short learning curve. I had both installed, tweaked on the code to remove a couple of links that I didn't want, modified the CSS to make a near perfect style match to my theme, and understood how to configure administrate the forum in about 3 hours.</p>
<p>I am not a code monkey and cannot compare the pros and cons of how Mingle Forums stacks up against the bbPress plug-in or any other solutions. The security vulnerability has also been resoled to my satisfaction.</p>
<p>Before I implement a solution I am more concerned with its support and sustainability. Both plug-ins have have over 50,000 downloads and the Mingle Forum plug-in was last updated 20 days ago. I had one problem/question with the installation and it was answered by the plug-in's author within hours. Within the last 5 days the Mingle Forum's author has posted 5 videos instructional videos on YouTube (<a href="http://www.youtube.com/user/cartpauj" rel="nofollow">http://www.youtube.com/user/cartpauj</a>). All indications are that this project is alive and well.</p>
<p>I am going to go live with it this week and plan to use it until another plug-in solution, which is better, becomes available.
</p>]]></description>
					</item>
		<item>
			<title>citizenkeith on "Security Bug Report Contact"</title>
			<link>http://bbpress.org/forums/topic/security-bug-report-contact#post-81928</link>
			<pubDate>Sun, 23 Jan 2011 13:34:31 +0000</pubDate>
			<dc:creator>citizenkeith</dc:creator>
			<guid isPermaLink="false">81928@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Any news?
</p>]]></description>
					</item>
		<item>
			<title>ricardouk on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81926</link>
			<pubDate>Sun, 23 Jan 2011 12:02:04 +0000</pubDate>
			<dc:creator>ricardouk</dc:creator>
			<guid isPermaLink="false">81926@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>the vulnerabilities were on previos versions</p>
<blockquote><p>Packages/Versions Affected: Confirmed on 1.0.24 and 1.0.26</p>
</blockquote>
<p>the plugin is at version 1.0.28 see changelog here<br />
<a href="http://wordpress.org/extend/plugins/mingle-forum/changelog/" rel="nofollow">http://wordpress.org/extend/plugins/mingle-forum/changelog/</a></p>
<p>why did you give a link saying the vulnerabilities were fixed when you were implying the opposite?  </p>
<blockquote><p>01/07/2011 Plugin maintainer releases update that addresses these<br />
vulnerabilities.
</p></blockquote>
<p>whoever uses older bbpress versions also have that problem
</p>]]></description>
					</item>
		<item>
			<title>blago on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81924</link>
			<pubDate>Sun, 23 Jan 2011 10:21:01 +0000</pubDate>
			<dc:creator>blago</dc:creator>
			<guid isPermaLink="false">81924@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Well, I liked it as well, until I came across this notice today: "Multiple Vulnerabilities in Mingle Forum" -  <a href="http://www.charleshooper.net/blog/multiple-vulnerabilities-in-mingle-forum-wordpress-plugin/" rel="nofollow">http://www.charleshooper.net/blog/multiple-vulnerabilities-in-mingle-forum-wordpress-plugin/</a><br />
He posts his findings because the "Maintainer of plugin is unreachable". Not sure if I still like this plugin so much.
</p>]]></description>
					</item>
		<item>
			<title>intimez on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81916</link>
			<pubDate>Sun, 23 Jan 2011 03:29:17 +0000</pubDate>
			<dc:creator>intimez</dc:creator>
			<guid isPermaLink="false">81916@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've been playing with this and it's promising while we wait for bbpress plugin to mature</p>
<p><a href="http://vanillaforums.com/blog/news/vanilla-wordpress-plugins-and-widgets/" rel="nofollow">http://vanillaforums.com/blog/news/vanilla-wordpress-plugins-and-widgets/</a>
</p>]]></description>
					</item>
		<item>
			<title>ricardouk on "&quot;New&quot; wordpress forum plugin: Mingle Forum"</title>
			<link>http://bbpress.org/forums/topic/new-wordpress-forum-plugin-mingle-forum#post-81913</link>
			<pubDate>Sat, 22 Jan 2011 20:47:13 +0000</pubDate>
			<dc:creator>ricardouk</dc:creator>
			<guid isPermaLink="false">81913@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Since i noticed the new bbpress wasnt going to be "theme integration friendly" just like the previous versions, i started to look for other forum plugins, simple:press was the next step but i find it quite slow loading.</p>
<p>Today while browsing an "drupal7 vs joomla 1.6" article i found a forum plugin for wordpress:</p>
<p>The Mingle Forum Plugin<br />
<a href="http://cartpauj.com/projects/mingle-forum-plugin/" rel="nofollow">http://cartpauj.com/projects/mingle-forum-plugin/</a></p>
<p>no need to ftp files, you can install it from within wordpress plugin page, no need for extra themes, it can use whatever theme wordpress uses, international localization/languages etc etc</p>
<p>@bbpress devs: in my opinion you're overcomplicating something that should be "easy as 1,2,3" in bbpress (theme integration), you're "integrating" not the opposite, lots and lots of people voiced their problems with complicated integrations or deep integration, why insist on having separate thmes for something that "uses" wordpress that itself already uses a theme. Make it simple.</p>
<p>REQUIREMENTS:<br />
PHP 5.x<br />
WordPress 3.0 or newer</p>
<p>FEATURES:</p>
<p>    * NEW! SEO Friendly URLs<br />
    * NEW! Forum sitemap (../wp-content/plugins/mingle-forum/sitemap.php)<br />
    * NEW! Adsense areas<br />
    * Media embedding into forum posts (like Youtube, Flickr, Photobucket…)<br />
    * WordPress 3.0 ready!<br />
    * Categories with sub-forums<br />
    * User Groups<br />
    * User Levels (EX: Newbie, Beginner, Pro…)<br />
    * Private Messages – Forum integrates seamlessly with my Cartpauj PM Plugin (Requires Cartpauj PM vs. 1.0.09 or greater)<br />
    * Moderators<br />
    * Skins<br />
    * Captcha<br />
    * BB Code<br />
    * Smilies<br />
    * Custom Forum Search<br />
    * Guest posts (See Mingle Forum Guest Info add-on by wpweaver)<br />
    * Hot/Very Hot topics<br />
    * Sticky (Pinned) Topics<br />
    * Move, Edit, Remove and Close topics<br />
    * Forum RSS Feeds<br />
    * Email notifications on replies to topics<br />
    * Recent posts widget (or PHP shortcode for your theme)<br />
    * Integrates nicely with most themes (It’s tough to make it work for all themes so some skin modifications may be required for your site)<br />
    * Allow/Dis-allow other users to view your profile from the Forum<br />
    * Supports different languages<br />
    * Integrates with the Mingle Plugin (by Blair Williams) NOTE: The “Mingle” plugin is NOT required for forum to work<br />
          o Avatars<br />
          o Profile’s (Works with/without Pretty Profile URLs enabled in Mingle settings)<br />
          o Activity in the forum shows up as activity in mingle (Helps increase discussion in both your forums and your SN)<br />
          o Deleted forum topics will also delete the corresponding Mingle board post</p>
<p>Screenshots<br />
<a href="http://www.flickr.com/photos/ricardouk/sets/72157625882755704/" rel="nofollow">http://www.flickr.com/photos/ricardouk/sets/72157625882755704/</a>
</p>]]></description>
					</item>

	</channel>
</rss>

