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

		<item>
			<title>Lynq on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102965</link>
			<pubDate>Fri, 18 May 2012 14:48:55 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">102965@http://bbpress.org/forums/</guid>
			<description><![CDATA[<pre><code>function bbp_list_forums( $args = &#039;&#039; ) {

	// Define used variables
	$output = $sub_forums = $topic_count = $reply_count = $counts = &#039;&#039;;
	$i = 0;
	$count = array();

	// Defaults and arguments
	$defaults = array (
		&#039;before&#039;              =&#62; &#039;&#60;ul class=&#34;bbp-forums&#34;&#62;&#039;,
		&#039;after&#039;               =&#62; &#039;&#60;/ul&#62;&#039;,
		&#039;link_before&#039;         =&#62; &#039;&#60;li class=&#34;bbp-forum&#34;&#62;&#039;,
		&#039;link_after&#039;          =&#62; &#039;&#60;/li&#62;&#039;,
		&#039;count_before&#039;        =&#62; &#039; (&#039;,
		&#039;count_after&#039;         =&#62; &#039;)&#039;,
		&#039;count_sep&#039;           =&#62; &#039;, &#039;,
		&#039;separator&#039;           =&#62; &#039;, &#039;,
		&#039;forum_id&#039;            =&#62; &#039;&#039;,
		&#039;show_topic_count&#039;    =&#62; true,
		&#039;show_reply_count&#039;    =&#62; true,
		&#039;freshness_before&#039;    =&#62; &#039;&#60;td class=&#34;last-posted-box&#34;&#62;&#039;,
		&#039;freshness_after&#039;     =&#62; &#039;&#60;/td&#62;&#039;,
		&#039;show_freshness_link&#039; =&#62; true,
		&#039;freshness_author_before&#039;    =&#62; &#039;&#60;div class=&#34;author-box&#34;&#62;&#039;,
		&#039;freshness_author_after&#039;     =&#62; &#039;&#60;/div&#62;&#039;
		);
	$r = wp_parse_args( $args, $defaults );
	extract( $r, EXTR_SKIP );

	// Bail if there are no subforums
	if ( !bbp_get_forum_subforum_count( $forum_id ) )
		return;

	// Loop through forums and create a list
	if ( $sub_forums = bbp_forum_get_subforums( $forum_id ) ) {

		// Total count (for separator)
		$total_subs = count( $sub_forums );
		foreach ( $sub_forums as $sub_forum ) {
			$i++; // Separator count

			// Get forum details
			$count     = array();
			$show_sep  = $total_subs &#62; $i ? $separator : &#039;&#039;;
			$permalink = bbp_get_forum_permalink( $sub_forum-&#62;ID );
			$title     = bbp_get_forum_title( $sub_forum-&#62;ID );

			// Show topic count
			if ( !empty( $show_topic_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;topic&#039;] = bbp_get_forum_topic_count( $sub_forum-&#62;ID );

			// Show reply count
			if ( !empty( $show_reply_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;reply&#039;] = bbp_get_forum_reply_count( $sub_forum-&#62;ID );

			// Counts to show
			if ( !empty( $count ) )
				$counts = $count_before . implode( $count_sep, $count ) . $count_after;

			// Show topic count
			if ( !empty( $show_freshness_link ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) ) {
				$freshness_link = bbp_get_forum_freshness_link( $sub_forum-&#62;ID );
				$freshness_author = $freshness_author_before . bbp_get_author_link( array( &#039;post_id&#039; =&#62; bbp_get_forum_last_active_id( $sub_forum-&#62;ID ), &#039;size&#039; =&#62; 14 ) ) . $freshness_author_after;
				$freshness_link = $freshness_before . $freshness_link . $freshness_author . $freshness_after;
			}

			// Build this sub forums link
			$output .= $link_before . &#039;&#60;a href=&#34;&#039; . $permalink . &#039;&#34; class=&#34;bbp-forum-link&#34;&#62;&#039; . $title . $counts . $freshness_link . &#039;&#60;/a&#62;&#039; . $show_sep . $link_after;
		}

		// Output the list
		echo $before . $output . $after;
	}
}</code></pre>
<p>This will give you more control over creating a theme which looks like Invision or PHPBB.</p>
<p>You will have to customize your theme as well to make sure it is compatible.
</p>]]></description>
					</item>
		<item>
			<title>Lynq on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102883</link>
			<pubDate>Thu, 17 May 2012 13:52:13 +0000</pubDate>
			<dc:creator>Lynq</dc:creator>
			<guid isPermaLink="false">102883@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey guys,</p>
<p>I have been searching for this myself aswell, but couldn't find anything anywhere.</p>
<p>If anyone is interested I modified the bbp_list_forums function to have a flag for freshness (last poster) to be displayed or not.</p>
<pre><code>function bbp_list_forums( $args = &#039;&#039; ) {

	// Define used variables
	$output = $sub_forums = $topic_count = $reply_count = $counts = &#039;&#039;;
	$i = 0;
	$count = array();

	// Defaults and arguments
	$defaults = array (
		&#039;before&#039;              =&#62; &#039;&#60;ul class=&#34;bbp-forums&#34;&#62;&#039;,
		&#039;after&#039;               =&#62; &#039;&#60;/ul&#62;&#039;,
		&#039;link_before&#039;         =&#62; &#039;&#60;li class=&#34;bbp-forum&#34;&#62;&#039;,
		&#039;link_after&#039;          =&#62; &#039;&#60;/li&#62;&#039;,
		&#039;count_before&#039;        =&#62; &#039; (&#039;,
		&#039;count_after&#039;         =&#62; &#039;)&#039;,
		&#039;count_sep&#039;           =&#62; &#039;, &#039;,
		&#039;separator&#039;           =&#62; &#039;, &#039;,
		&#039;forum_id&#039;            =&#62; &#039;&#039;,
		&#039;show_topic_count&#039;    =&#62; true,
		&#039;show_reply_count&#039;    =&#62; true,
		&#039;freshness_before&#039;    =&#62; &#039;&#60;td&#62;&#039;,
		&#039;freshness_after&#039;     =&#62; &#039;&#60;/td&#62;&#039;,
		&#039;show_freshness_link&#039; =&#62; true
	);
	$r = wp_parse_args( $args, $defaults );
	extract( $r, EXTR_SKIP );

	// Bail if there are no subforums
	if ( !bbp_get_forum_subforum_count( $forum_id ) )
		return;

	// Loop through forums and create a list
	if ( $sub_forums = bbp_forum_get_subforums( $forum_id ) ) {

		// Total count (for separator)
		$total_subs = count( $sub_forums );
		foreach ( $sub_forums as $sub_forum ) {
			$i++; // Separator count

			// Get forum details
			$count     = array();
			$show_sep  = $total_subs &#62; $i ? $separator : &#039;&#039;;
			$permalink = bbp_get_forum_permalink( $sub_forum-&#62;ID );
			$title     = bbp_get_forum_title( $sub_forum-&#62;ID );

			// Show topic count
			if ( !empty( $show_topic_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;topic&#039;] = bbp_get_forum_topic_count( $sub_forum-&#62;ID );

			// Show reply count
			if ( !empty( $show_reply_count ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) )
				$count[&#039;reply&#039;] = bbp_get_forum_reply_count( $sub_forum-&#62;ID );

			// Counts to show
			if ( !empty( $count ) )
				$counts = $count_before . implode( $count_sep, $count ) . $count_after;

			// Show topic count
			if ( !empty( $show_freshness_link ) &#38;&#38; !bbp_is_forum_category( $sub_forum-&#62;ID ) ) {
				$freshness_link = bbp_get_forum_freshness_link( $sub_forum-&#62;ID );
				$freshness_link = $freshness_before . $freshness_link . $freshness_after;
			}

			// Build this sub forums link
			$output .= $link_before . &#039;&#60;a href=&#34;&#039; . $permalink . &#039;&#34; class=&#34;bbp-forum-link&#34;&#62;&#039; . $title . $counts . $freshness_link . &#039;&#60;/a&#62;&#039; . $show_sep . $link_after;
		}

		// Output the list
		echo $before . $output . $after;
	}
}</code></pre>
<p>Let me know if you would like any help with I am currently customising my theme to work with it, you will need to add an extra th to your forum tables other you just have a blank in place.</p>
<p>Hope someone finds this helpful!</p>
<p>p.s. you can also specify a before and after in the arguments of bbp_list_forums.</p>
<p>All the best.<br />
Lynq.
</p>]]></description>
					</item>
		<item>
			<title>damjtoh on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102538</link>
			<pubDate>Mon, 07 May 2012 22:59:58 +0000</pubDate>
			<dc:creator>damjtoh</dc:creator>
			<guid isPermaLink="false">102538@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I edit the template.php bbp-forum, although I do not sound right to modify the core.</p>
<p>I changed bbp_list_forums function () original:<br />
<code><br />
function bbp_list_forums( $args = '' ) {<br />
[...]<br />
			// Build this sub forums link<br />
			$output .= $link_before . '<a href="' . $permalink . '">' . $title . $counts . '</a>' . $show_sep . $link_after;<br />
		}</p>
<p>		// Output the list<br />
		echo $before . $output . $after;<br />
	}<br />
}<br />
</code><br />
by:<br />
<code><br />
function bbp_list_forums( $args = '' ) {<br />
[...]<br />
			// Build this sub forums link<br />
			//$output .= $link_before . '<a href="' . $permalink . '">' . $title . $counts . '</a>' . $show_sep . $link_after;<br />
			$output[] = array(<br />
			'permalink'=&#62;$permalink,<br />
			'title'=&#62;$title,<br />
			'count'=&#62;$count<br />
			);<br />
		}</p>
<p>		// Output the list<br />
		return $output;<br />
	}<br />
}<br />
</code><br />
and I returned:<br />
<code><br />
Array<br />
(<br />
    [0] =&#62; Array<br />
        (<br />
            [permalink] =&#62; <a href="http://localhost/wpv1/foros/seccion/dota2/torneos-y-competencias" rel="nofollow">http://localhost/wpv1/foros/seccion/dota2/torneos-y-competencias</a><br />
            [title] =&#62; Torneos y competencias<br />
            [count] =&#62; Array<br />
                (<br />
                    [topic] =&#62; 1<br />
                    [reply] =&#62; 5<br />
                )</p>
<p>        )</p>
<p>    [1] =&#62; Array<br />
        (<br />
            [permalink] =&#62; <a href="http://localhost/wpv1/foros/seccion/dota2/dota-chat" rel="nofollow">http://localhost/wpv1/foros/seccion/dota2/dota-chat</a><br />
            [title] =&#62; Dota chat<br />
            [count] =&#62; Array<br />
                (<br />
                    [topic] =&#62; 0<br />
                    [reply] =&#62; 0<br />
                )</p>
<p>        )</p>
<p>)<br />
</code></p>
<p>The only drawback is that I can not get the last comment of each forum.
</p>]]></description>
					</item>
		<item>
			<title>tate83 on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/7#post-102423</link>
			<pubDate>Fri, 04 May 2012 15:27:41 +0000</pubDate>
			<dc:creator>tate83</dc:creator>
			<guid isPermaLink="false">102423@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi<br />
Love the plugin. But are the phpBB image/URL trouble's going to be resolved somewhen? There isn't much acitivity any more..</p>
<p>Cheers<br />
Tate
</p>]]></description>
					</item>
		<item>
			<title>spiritfly on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-102418</link>
			<pubDate>Fri, 04 May 2012 13:19:26 +0000</pubDate>
			<dc:creator>spiritfly</dc:creator>
			<guid isPermaLink="false">102418@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I can't believe this still haven't been resolved. What is going on with the bbpress community? This is a must have. It should be the forums default looks.</p>
<p>I have tried playing with it, but I still don't understand what really is going on. </p>
<p>Can someone who made these kind of subcategories post the changes he made?</p>
<p>Thanks
</p>]]></description>
					</item>
		<item>
			<title>raubin on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/7#post-102074</link>
			<pubDate>Thu, 26 Apr 2012 10:59:19 +0000</pubDate>
			<dc:creator>raubin</dc:creator>
			<guid isPermaLink="false">102074@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Any news if the plugin is going to be able to export / import from mybb forums? Need to get away from mybb and love the look of this WP plugin. Thanks in advance.
</p>]]></description>
					</item>
		<item>
			<title>zeaks on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/7#post-101734</link>
			<pubDate>Thu, 19 Apr 2012 06:00:59 +0000</pubDate>
			<dc:creator>zeaks</dc:creator>
			<guid isPermaLink="false">101734@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm currently using Xenforo, great forum, but I want to have my forums integrated with my site. Glad to hear Xenforo is in added to future options.
</p>]]></description>
					</item>
		<item>
			<title>sebastian-konrad-laski on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101690</link>
			<pubDate>Tue, 17 Apr 2012 22:50:41 +0000</pubDate>
			<dc:creator>sebastian-konrad-laski</dc:creator>
			<guid isPermaLink="false">101690@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I ran this script, it works great! Before I ran phpbb3 3.0.3.<br />
Thanks!</p>
<p>Johann Sebastian Konrad Laski UGA
</p>]]></description>
					</item>
		<item>
			<title>grahamgrocho on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101679</link>
			<pubDate>Tue, 17 Apr 2012 15:50:43 +0000</pubDate>
			<dc:creator>grahamgrocho</dc:creator>
			<guid isPermaLink="false">101679@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Update: I tried something new.</p>
<p>I installed wordpress on a folder in my site. And then installed the bbpress plugin version.<br />
Then I tried this bbpress conversion plugin. </p>
<p>Voila. It worked.</p>
<p>However, I hate the way this is set up and looks. Anyone can read the forums. You only need to login to reply. I like the standalone version much better and I feel like I had better control over the settings, too.</p>
<p>I wonder why the conversion plugin works, but converting for standalone doesn't...</p>
<p>For the record, using the plugin version with wordpress retained both my wordpress and phpbb3 passwords/usernames. Converting using standalone erased both, it seems, rendering any login impossible.</p>
<p>I wonder if I can now convert from plugin version to standalone version...
</p>]]></description>
					</item>
		<item>
			<title>grahamgrocho on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101674</link>
			<pubDate>Tue, 17 Apr 2012 12:19:31 +0000</pubDate>
			<dc:creator>grahamgrocho</dc:creator>
			<guid isPermaLink="false">101674@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>yes, this appears to only work for bbpress plugin version. I'm using standalone...
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101670</link>
			<pubDate>Tue, 17 Apr 2012 10:57:29 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">101670@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I thought bbconverter was for the bbpress plugin, not for the standalone version...
</p>]]></description>
					</item>
		<item>
			<title>netweb on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101646</link>
			<pubDate>Tue, 17 Apr 2012 03:46:53 +0000</pubDate>
			<dc:creator>netweb</dc:creator>
			<guid isPermaLink="false">101646@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Give this a go... It should work for you fine <a href="http://wordpress.org/extend/plugins/bbconverter/" rel="nofollow">http://wordpress.org/extend/plugins/bbconverter/</a></p>
<p>There is also a thread about it here:<br />
<a href="http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x" rel="nofollow">http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x</a>
</p>]]></description>
					</item>
		<item>
			<title>grahamgrocho on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101644</link>
			<pubDate>Tue, 17 Apr 2012 01:51:35 +0000</pubDate>
			<dc:creator>grahamgrocho</dc:creator>
			<guid isPermaLink="false">101644@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>the issue is bigger than that, though.</p>
<p>users, including myself as admin/keymaster, aren't able to reset passwords. the emails never arrive. it says an email with a new password was sent, but it never arrives.</p>
<p>so basically, after i make this conversion, i'm unable to log in AT ALL. not as admin/keymaster or any user.</p>
<p>I've just checked phpmyadmin console again after a new install: I can no confirm that my installation keymaster login completely disappears after the conversion. the username is gone entirely, leaving me only with the 4 usernames from my original phpBB3 board. the issue is that those passwords don't work and resetting apparently will not send me any emails to reset.</p>
<p>i'm so lost.
</p>]]></description>
					</item>
		<item>
			<title>Rick Lewis on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101643</link>
			<pubDate>Tue, 17 Apr 2012 01:35:53 +0000</pubDate>
			<dc:creator>Rick Lewis</dc:creator>
			<guid isPermaLink="false">101643@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>As I recall when doing this long ago, none of the users will work. You have to have them reset their passwords for their accounts to work. </p>
<p>On the keymaster account there was a trick to that which I do not recall at this moment. However, I do believe you can edit the database itself. </p>
<p>I believe it changes the role to admin instead of keymaster and then you will have to also change the password to something else. </p>
<p>Did you use the converter noted in this thread?<br />
The first link I posted was a very good step by step process that could also give you the info you need. </p>
<p>If I find anything I will post here to further help out. Good luck.
</p>]]></description>
					</item>
		<item>
			<title>grahamgrocho on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101637</link>
			<pubDate>Tue, 17 Apr 2012 01:04:31 +0000</pubDate>
			<dc:creator>grahamgrocho</dc:creator>
			<guid isPermaLink="false">101637@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Just tried again. Isn't working. Everything works fine before the phpBB3 conversion, but then I can't get any users to log in. I've tried all known passwords, etc. Can't log in as bbpress Key Master either.</p>
<p>Here's what I've done:<br />
(1) Install bbpress standalone to same database/sql username/pass as phpBB3 forum<br />
(2) Convert phpBB3 tables using this converter<br />
(3) Go back to bbpress to try to log in as keymaster and it doesn't work. i try other usernames from the phpBB3 and they don't work. Mind you, my phpBB3 board only had for users. This board was only set up for my band to discuss new song ideas back and forth while we're away.</p>
<p>Any help? I'm kind of a novice. I've gone into phpmyadmin console and see only 4 users in the bb_users file. In fact, it appears as if after I do the conversion, it's overwriting my original keymaster login. that one is no where to be seen...
</p>]]></description>
					</item>
		<item>
			<title>grahamgrocho on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101619</link>
			<pubDate>Mon, 16 Apr 2012 20:20:37 +0000</pubDate>
			<dc:creator>grahamgrocho</dc:creator>
			<guid isPermaLink="false">101619@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>No dice. both are different and I just tried again. now it says my bbpress keymaster doesn't even exist, and my php keymaster/admin's password is incorrect. trying to reset says it sent me an email, but i am not receiving any (checked spam too).</p>
<p>hmmmmm
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101616</link>
			<pubDate>Mon, 16 Apr 2012 20:03:05 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">101616@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Before importing, make sure your key master login details (email and login name) for bbPress are different from those of phpBB keymaster. Then try importing and see of you get any luck...
</p>]]></description>
					</item>
		<item>
			<title>grahamgrocho on "phpbb3 -&gt; bbpress converter"</title>
			<link>http://bbpress.org/forums/topic/phpbb3-gt-bbpress-converter-beta-release/page/5#post-101614</link>
			<pubDate>Mon, 16 Apr 2012 20:00:41 +0000</pubDate>
			<dc:creator>grahamgrocho</dc:creator>
			<guid isPermaLink="false">101614@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Having trouble with this. I installed standalone bbpress just fine. Then when I convert, I can see at the login page that all of the data has successfully transferred. But then I'm unable to login as keymaster (or any other login). I've tried my old phpBB3 board login info, too, but that doesn't work. I've reinstalled and tryied again to no avail.</p>
<p>Any help? Why can't I login with my bbpress password? Or any password/login for that reason?
</p>]]></description>
					</item>
		<item>
			<title>ExtremeSoccer on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-99934</link>
			<pubDate>Tue, 13 Mar 2012 22:53:31 +0000</pubDate>
			<dc:creator>ExtremeSoccer</dc:creator>
			<guid isPermaLink="false">99934@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>which stylesheet? the one in plugins/bbpress/plugins/themes/twentyten?
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "WordPress and PHPBB"</title>
			<link>http://bbpress.org/forums/topic/wordpress-and-phpbb#post-99928</link>
			<pubDate>Tue, 13 Mar 2012 17:59:55 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">99928@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This might help a little:</p>
<p><a href="http://bbpress.org/forums/topic/bbp-plug-in-for-wp-scalable" rel="nofollow">http://bbpress.org/forums/topic/bbp-plug-in-for-wp-scalable</a>
</p>]]></description>
					</item>
		<item>
			<title>majamaki on "WordPress and PHPBB"</title>
			<link>http://bbpress.org/forums/topic/wordpress-and-phpbb#post-99927</link>
			<pubDate>Tue, 13 Mar 2012 17:56:01 +0000</pubDate>
			<dc:creator>majamaki</dc:creator>
			<guid isPermaLink="false">99927@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>How is bbPress for a forum just shy of 200,000 posts and over 16,000 members? Can bbPress handle the growth to 500k to 1 million posts? Are there any good plugins/mods that help sync user data and unify the experience?
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Topic author names prefixed with &quot;imported_&quot;"</title>
			<link>http://bbpress.org/forums/topic/topic-author-names-prefixed-with-imported_#post-98791</link>
			<pubDate>Thu, 01 Mar 2012 17:01:01 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98791@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I have found that this plugin imports users AND imports topics, but doesn't make the connection. So basically it imports users twice - once from user table and another time as authors of something (or nothing).</p>
<p>The usernames shown as post authors have imported_ prefixed to them.</p>
<p>So we have<br />
<em>username</em>, and<br />
<em>imported_username</em></p>
<p>So I tried deleting <em>imported_username</em> using bbpress function of assigning all its topics/replies to <em>username</em>. The operation was successful and now I see <em>username</em> as author of those topics/replies, but one problem lingers: I still don't see any topics/replies by <em>username</em> if I go to its profile page.</p>
<p>I can't go the opposite way and delete <em>username</em> and then change <em>imported_username</em> to <em>username</em> as WordPress doesn't allow changing usernames.</p>
<p>P.S. I imported from phpBB 3.0.9
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/7#post-98782</link>
			<pubDate>Thu, 01 Mar 2012 15:06:30 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98782@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Umm...except that the usernames (in frontend only) appear as imported_username instead of username. Anyone know the fix?
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/6#post-98781</link>
			<pubDate>Thu, 01 Mar 2012 13:44:58 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98781@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Actually, I take that back.</p>
<p>If you click on "Activate Plugin" immediately upon installation from the Add New Plugin area, the plugin does throw up the error</p>
<blockquote><p>The plugin does not have a valid header.</p></blockquote>
<p>However, if I later to to installed plugins, and then click "Activate", then I am able to activate and use the plugin.</p>
<p>I am also happy to report that I was able to successfully convert a phpBB 3.0.9 forum. It's not perfect...I need to fix a few things here or there, but it is good enough...as good as can be expected from a general-purpose automated converter.
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/6#post-98780</link>
			<pubDate>Thu, 01 Mar 2012 12:42:29 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98780@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@JJJ: Which version are you trying?</p>
<p>I am using the latest version of WordPress 3.3.1</p>
<p>I have tried both bbPress 2.0 and 2.0.2</p>
<p>I installed bbConverter through WP's admin panel so the plugin version is 1.3</p>
<p>When I click Activate immediately upon installation, I get<br />
The plugin does not have a valid header.
</p>]]></description>
					</item>
		<item>
			<title>OAEErra on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/6#post-98630</link>
			<pubDate>Mon, 27 Feb 2012 21:59:52 +0000</pubDate>
			<dc:creator>OAEErra</dc:creator>
			<guid isPermaLink="false">98630@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey guys, just a thought - is it possible to convert BBPress 2.0 threads and posts back to v1.X in any way?
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/6#post-98622</link>
			<pubDate>Mon, 27 Feb 2012 16:15:35 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">98622@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Works for me.
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Introducing bbConverter - Convert your current forums for use with bbPress 2x"</title>
			<link>http://bbpress.org/forums/topic/introducing-bbconverter-convert-your-current-forums-for-use-with-bbpress-2x/page/6#post-98583</link>
			<pubDate>Sun, 26 Feb 2012 15:29:36 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98583@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Does not install.</p>
<blockquote><p>The plugin does not have a valid header.</p></blockquote>]]></description>
					</item>
		<item>
			<title>OC2PS on "Layout bbPress as Invision or phpBB or vBulletin"</title>
			<link>http://bbpress.org/forums/topic/layout-bbpress-as-invision-or-phpbb-or-vbulletin#post-98227</link>
			<pubDate>Fri, 17 Feb 2012 08:31:34 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">98227@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Just add<br />
<code>.bbp-forum-info .bbp-forums li {display:block;}</code><br />
to your stylesheet
</p>]]></description>
					</item>
		<item>
			<title>Arvid on "Why bbPress sucks!"</title>
			<link>http://bbpress.org/forums/topic/why-bbpress-sucks#post-98213</link>
			<pubDate>Fri, 17 Feb 2012 01:21:04 +0000</pubDate>
			<dc:creator>Arvid</dc:creator>
			<guid isPermaLink="false">98213@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Some pretty neat ideas! Partcular thumbs up for <a href="http://trac.bbpress.org/ticket/3">#3</a> (official migration tool) <a href="http://trac.bbpress.org/ticket/7">#7</a> (forum sidebar) <a href="http://trac.bbpress.org/ticket/9">#9</a> (custom header code) <a href="http://trac.bbpress.org/ticket/10">#10</a> (standalone package)</p>
<p>I just noticed that the "Docs" tab above has a different destination <a href="http://codex.bbpress.org/" rel="nofollow">http://codex.bbpress.org/</a></p>
<p>On the page it says "you are welcome and invited to modify any of the pages you see here."</p>
<p>Question is - how? I don't see any "Edit" links on any of the pages...
</p>]]></description>
					</item>

	</channel>
</rss>

