<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Support Forums Tag: export</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: export</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 04:44:36 +0000</pubDate>

<item>
<title>Ipstenu on "How to move a forum?"</title>
<link>http://bbpress.org/forums/topic/how-to-move-a-forum#post-21867</link>
<pubDate>Wed, 17 Dec 2008 17:16:02 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">21867@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@staats - If you have access to your SQL database (like through phpMyAdmin), it's much the same as moving any databased app, like WordPress :)&#60;/p&#62;
&#60;p&#62;The first set of directions I put in the post above are mostly right. I've updated them here since there's a couple things that should be explained differently than my copy replace from WordPress's directions (why reinvent the wheel?).  If you've got WP and BB integrated you'll have to make all the changes to the files (wp-config and bb-config AND the admin settings changes) &#60;strong&#62;BEFORE&#60;/strong&#62; you backup your database. &#60;/p&#62;
&#60;p&#62;First, backup your database - &#60;a href=&#34;http://codex.wordpress.org/Backing_Up_Your_Database&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Backing_Up_Your_Database&#60;/a&#62; (obviously the bb database, not the wp one for your case)  No matter WHAT you want this copy! If you screw everything up (and we've all done that) you need a fall back plan.&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Download a copy of the main bbpress files from your OLD forum to your hard drive and edit b-config.php to suit the new server.&#60;/li&#62;
&#60;li&#62;Go back to your OLD forum and go to settings and change the bbPress address (URL)  to that of your new site. (You may want to change your email addy here, but you don't have to just yet).&#60;/li&#62;
&#60;li&#62;&#60;em&#62;IF&#60;/em&#62; you've integrated bbPress and WordPress, go to your WordPress Integration page and change any domain information there that has changed.&#60;/li&#62;
&#60;li&#62;Download your database (but keep the old backup just in case), upload this new database and the copy of the forum files with the edited bb-config.php to your new server. &#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;Again, if Wordpress and bbPress are integrated and sharing a database, do steps 1-3 for bbpress, and then steps 1 and 2 &#60;a href=&#34;http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_to_a_New_Server&#34;&#62;here&#60;/a&#62;, and THEN do the last DB download step just once.&#60;/p&#62;
&#60;p&#62;And if it's all confusing ... yeah, it's a lot of fruit to be juggling at once.
&#60;/p&#62;</description>
</item>
<item>
<title>staats on "How to move a forum?"</title>
<link>http://bbpress.org/forums/topic/how-to-move-a-forum#post-21866</link>
<pubDate>Wed, 17 Dec 2008 16:57:41 +0000</pubDate>
<dc:creator>staats</dc:creator>
<guid isPermaLink="false">21866@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@ Ipstenu:&#60;/p&#62;
&#60;p&#62;Can you offer an exporting/importing solution for those working with the 0.9.0.3 stable release.  I wish to move the forum to a new domain name, and have not found much discussion about the most efficient way to do this.&#60;/p&#62;
&#60;p&#62;Thank you&#60;/p&#62;
&#60;p&#62;Rich
&#60;/p&#62;</description>
</item>
<item>
<title>johnnydoe on "forum exporter plugin"</title>
<link>http://bbpress.org/forums/topic/forum-exporter-plugin#post-21546</link>
<pubDate>Fri, 12 Dec 2008 14:10:05 +0000</pubDate>
<dc:creator>johnnydoe</dc:creator>
<guid isPermaLink="false">21546@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ill give this a try, thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Ipstenu on "forum exporter plugin"</title>
<link>http://bbpress.org/forums/topic/forum-exporter-plugin#post-21545</link>
<pubDate>Fri, 12 Dec 2008 14:06:23 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">21545@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You could probably do it with RSS.  If you're using wordpress, you can do this (I have it as a sidebar widget).&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php require_once (ABSPATH . WPINC . &#38;#39;/rss-functions.php&#38;#39;);
  $today = current_time(&#38;#39;mysql&#38;#39;, 1);
  // insert the feed URL here
 $rss = @fetch_rss(&#38;#39;http://www.domain.com/forums/rss&#38;#39;);
  if ( isset($rss-&#38;gt;items) &#38;#38;&#38;#38; 0 != count($rss-&#38;gt;items) ) {
          // set the number of items from the feed to display (6)
          $rss-&#38;gt;items = array_slice($rss-&#38;gt;items, 0, 5);
          foreach ($rss-&#38;gt;items as $item ) {
          echo &#38;#39;&#38;lt;h1&#38;gt;&#38;#39;;
          echo wp_specialchars($item[&#38;#39;title&#38;#39;]);
          echo &#38;#39;&#38;lt;/h1&#38;gt;&#38;#39;;
          echo &#38;#39;&#38;lt;p&#38;gt;&#38;#39;;
          echo wp_specialchars($item[&#38;#39;description&#38;#39;]);
          echo &#38;lt;a href=&#38;quot;&#38;#39;;
          echo wp_filter_kses($item[&#38;#39;link&#38;#39;]);
          echo &#38;#39;&#38;quot;&#38;gt;(Read More)&#38;lt;/a&#38;gt;&#38;#39;;
          echo &#38;#39;&#38;lt;/p&#38;gt;&#38;#39;;
          }
  }; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The main (all posts) RSS feed is: &#60;a href=&#34;http://www.domain.com/forums/rss&#34; rel=&#34;nofollow&#34;&#62;http://www.domain.com/forums/rss&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;All subsequent forums (fori?) are: &#60;a href=&#34;http://www.domain.com/forums/rss/&#38;lt;whatever&#38;gt;&#34; rel=&#34;nofollow&#34;&#62;http://www.domain.com/forums/rss/&#38;lt;whatever&#38;gt;&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Like this subforum would be: &#60;a href=&#34;http://bbpress.org/forums/rss/forum/plugins&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/rss/forum/plugins&#60;/a&#62;&#60;br /&#62;
This page would be: &#60;a href=&#34;http://bbpress.org/forums/rss/topic/forum-exporter-plugin&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/rss/topic/forum-exporter-plugin&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If you don't have wordpress, look into MagpieRSS
&#60;/p&#62;</description>
</item>
<item>
<title>johnnydoe on "forum exporter plugin"</title>
<link>http://bbpress.org/forums/topic/forum-exporter-plugin#post-21542</link>
<pubDate>Fri, 12 Dec 2008 13:10:20 +0000</pubDate>
<dc:creator>johnnydoe</dc:creator>
<guid isPermaLink="false">21542@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hello, &#60;/p&#62;
&#60;p&#62;im looking for a plugin to get the ability to  export all topics from a particular forum (ID) to a html page , so just the topic name plus the excerpt like:&#60;/p&#62;
&#60;p&#62;1. &#38;lt;/h1&#38;gt;lorem1 ipsum sit amet dolor &#38;lt;/h1&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt; bla bla bla bla bla ... (read more)&#38;lt;p&#38;gt;&#60;/p&#62;
&#60;p&#62;---------&#60;/p&#62;
&#60;p&#62;2. &#38;lt;/h1&#38;gt;lorem2 ipsum sit amet dolor &#38;lt;/h1&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt; bla bla bla bla bla ... (read more)&#38;lt;p&#38;gt;&#60;/p&#62;
&#60;p&#62;---------&#60;/p&#62;
&#60;p&#62;3. &#38;lt;/h1&#38;gt;lorem3 ipsum sit amet dolor &#38;lt;/h1&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;p&#38;gt; bla bla bla bla bla ... (read more)&#38;lt;p&#38;gt;&#60;/p&#62;
&#60;p&#62;...etcetera.&#60;/p&#62;
&#60;p&#62;is there such a plugin around?&#60;/p&#62;
&#60;p&#62;thanks a bunch.
&#60;/p&#62;</description>
</item>
<item>
<title>wmnasef on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-21335</link>
<pubDate>Mon, 08 Dec 2008 11:30:14 +0000</pubDate>
<dc:creator>wmnasef</dc:creator>
<guid isPermaLink="false">21335@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i used phpbb for like 5 years now, it's a great forum software, but i have to say that i admire the simple/plain approach of bbpress.&#60;br /&#62;
so, am working on a phpbb3 -&#38;gt; bbpress converter. so far i figured all i need to convert forums, topics, posts, user info. i only have a problem moving user passwords, so does anybody know of a way of importing user passwords from phpbb3 to bbpress ? the problem is that phpbb3 doesn't use plain md5 anymore, and i don't know exact details about the new hashing method.&#60;br /&#62;
am thinking about importing all users without passwords- or even with unified password, then generate new passwords for them all through bbpress admin panel and send it to their emails, but if i can import passwords it would be far better.&#60;br /&#62;
anybody interested in helping me ?
&#60;/p&#62;</description>
</item>
<item>
<title>sidisok on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-21113</link>
<pubDate>Fri, 28 Nov 2008 22:20:00 +0000</pubDate>
<dc:creator>sidisok</dc:creator>
<guid isPermaLink="false">21113@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am also curious as to when a converter would be available. The only thing holding me back from switching to bbPress is the lack of an easy way to import a phpBB3 database into a bbPress installation.
&#60;/p&#62;</description>
</item>
<item>
<title>bryan868 on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-21060</link>
<pubDate>Thu, 27 Nov 2008 02:14:02 +0000</pubDate>
<dc:creator>bryan868</dc:creator>
<guid isPermaLink="false">21060@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there an ETA on the converter?
&#60;/p&#62;</description>
</item>
<item>
<title>mxadness on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-20865</link>
<pubDate>Fri, 21 Nov 2008 10:10:24 +0000</pubDate>
<dc:creator>mxadness</dc:creator>
<guid isPermaLink="false">20865@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;A simple phpBB3 to bbPress converter would be great. I really hope this gets done soon -- bbPress + Wordpress absolutely rocks.
&#60;/p&#62;</description>
</item>
<item>
<title>Ipstenu on "How to move a forum?"</title>
<link>http://bbpress.org/forums/topic/how-to-move-a-forum#post-20437</link>
<pubDate>Tue, 04 Nov 2008 02:10:07 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">20437@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Those plugins come default for 1.0alpha2 under the plugins tab, you have to turn them on. I suspect it's POSSIBLE if you downloaded the alpha version, they might work in a non-alpha install, but it's untested.&#60;/p&#62;
&#60;p&#62;But really, if you're just moving your domain, you can pretty much do what you'd do for Wordpress or any other PHP/SQL driven site.  You have two basic options.&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Download a copy of the main bbpress files from your OLD server to your hard drive and edit wp-config.php to suit the new server.&#60;/li&#62;
&#60;li&#62;Go back to your OLD forum and go to options and change the url (both of them) to that of your new site.&#60;/li&#62;
&#60;li&#62;Download your database (but keep the old one just in case), upload this new database and the copy of the wordpress core files with the edited bb-config.php to your NEW server. &#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;Or...&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Install a new forum on the new server.&#60;/li&#62;
&#60;li&#62;Export the forum content from the OLD server into a BBXF file&#60;/li&#62;
&#60;li&#62;Import the data into the new forum.&#60;/li&#62;
&#60;/ol&#62;</description>
</item>
<item>
<title>Vadi on "How to move a forum?"</title>
<link>http://bbpress.org/forums/topic/how-to-move-a-forum#post-20434</link>
<pubDate>Tue, 04 Nov 2008 00:48:21 +0000</pubDate>
<dc:creator>Vadi</dc:creator>
<guid isPermaLink="false">20434@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Won't be changing the domain name, just moving to a new host - but for the time being, the domain name will change temporarily.&#60;/p&#62;
&#60;p&#62;Unfortunately I couldn't find any import/export plugins, and I searched for them again just now... was hoping for a more fail-safe solution than exporting and importing the databases :/
&#60;/p&#62;</description>
</item>
<item>
<title>Ipstenu on "How to move a forum?"</title>
<link>http://bbpress.org/forums/topic/how-to-move-a-forum#post-20427</link>
<pubDate>Mon, 03 Nov 2008 18:07:18 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">20427@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There's a BBXF Export and Import pair of plugins that come with the site.&#60;/p&#62;
&#60;p&#62;I'm assuming you're changing your domain name, because otherwise you could just export your database and save it, and your html to your own computer, and then copy them up to the new host.
&#60;/p&#62;</description>
</item>
<item>
<title>Vadi on "How to move a forum?"</title>
<link>http://bbpress.org/forums/topic/how-to-move-a-forum#post-20426</link>
<pubDate>Mon, 03 Nov 2008 18:04:34 +0000</pubDate>
<dc:creator>Vadi</dc:creator>
<guid isPermaLink="false">20426@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I need to move bbpress forums to another host. I've looked about for an import/export function in the Admin area, but didn't find one.&#60;/p&#62;
&#60;p&#62;Is there any solution besides manually tinkering with the database?&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>bryan868 on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-20315</link>
<pubDate>Wed, 29 Oct 2008 06:02:52 +0000</pubDate>
<dc:creator>bryan868</dc:creator>
<guid isPermaLink="false">20315@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just realized I can't do it, the phpBB3 -&#38;gt; phpBB2 converter doesn't bring over the users.  And I don't want to lose my userbase.&#60;/p&#62;
&#60;p&#62;So it looks like I'll just be waiting until a phpBB3 -&#38;gt; bbPress converter is finished!  Whenever that'll be!
&#60;/p&#62;</description>
</item>
<item>
<title>yazerty on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-20158</link>
<pubDate>Thu, 23 Oct 2008 14:54:51 +0000</pubDate>
<dc:creator>yazerty</dc:creator>
<guid isPermaLink="false">20158@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It seems not to work for my phpbb3 board :(. Perhaps the 13000 messages are for something in this... ?&#60;/p&#62;
&#60;p&#62;If you succed, tell us bryan868 :) !&#60;/p&#62;
&#60;p&#62;And will passwords be &#34;ok&#34; ?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-20107</link>
<pubDate>Tue, 21 Oct 2008 21:18:38 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20107@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't know of a better way right now.
&#60;/p&#62;</description>
</item>
<item>
<title>bryan868 on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-20106</link>
<pubDate>Tue, 21 Oct 2008 20:53:35 +0000</pubDate>
<dc:creator>bryan868</dc:creator>
<guid isPermaLink="false">20106@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I guess I'll try the phpBB3 -&#38;gt; phpBB2 -&#38;gt; bbPress method.  Yikes!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-20070</link>
<pubDate>Mon, 20 Oct 2008 22:07:31 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20070@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;phpBB3 &#38;gt; phpBB2&#60;br /&#62;
&#60;a href=&#34;http://www.arvystate.net/e107_plugins/content/content.php?content.30&#34; rel=&#34;nofollow&#34;&#62;http://www.arvystate.net/e107_plugins/content/content.php?content.30&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;phpBB2 &#38;gt; bbPress&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/a-phpbb-to-bbpress-database-converter&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/a-phpbb-to-bbpress-database-converter&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I don't think there's any how to written for the complete process.  You could be the first.
&#60;/p&#62;</description>
</item>
<item>
<title>yazerty on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-20069</link>
<pubDate>Mon, 20 Oct 2008 21:24:18 +0000</pubDate>
<dc:creator>yazerty</dc:creator>
<guid isPermaLink="false">20069@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh, it seems this will take a very long time to have a convertor for phpbb 3 :'(.&#60;br /&#62;
Is there another way to convert a phpbb 3 to bbpress (tutorial ?)  :) ?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-19945</link>
<pubDate>Wed, 15 Oct 2008 06:51:11 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19945@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;bbxf if the work in progress - it's in it's infancy however and you'll have to look at previous work by others on the phpbb2 convertor. There is no 1 minute way, it's going to take some time and effort.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbxf.org/&#34; rel=&#34;nofollow&#34;&#62;http://bbxf.org/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://code.google.com/p/web-forums-standard/&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/web-forums-standard/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You are much better off following this tag:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/tags/phpbb&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/tags/phpbb&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>wonen on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-19944</link>
<pubDate>Wed, 15 Oct 2008 06:48:36 +0000</pubDate>
<dc:creator>wonen</dc:creator>
<guid isPermaLink="false">19944@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Not very likely Bryan. It's a good thing to things like this are spoken about though.
&#60;/p&#62;</description>
</item>
<item>
<title>bryan868 on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-19943</link>
<pubDate>Wed, 15 Oct 2008 05:58:56 +0000</pubDate>
<dc:creator>bryan868</dc:creator>
<guid isPermaLink="false">19943@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is the phpBB 3.0 converter included in bbPress 1.0 alpha 2?  Just curious, I'm interested in testing it out.
&#60;/p&#62;</description>
</item>
<item>
<title>RossB on "Transferring forum to another host server (intranet)"</title>
<link>http://bbpress.org/forums/topic/transferring-forum-to-another-host-server-intranet#post-19354</link>
<pubDate>Sun, 21 Sep 2008 05:45:16 +0000</pubDate>
<dc:creator>RossB</dc:creator>
<guid isPermaLink="false">19354@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks, _ck_ - that's what I figured (but without being able to express it in tech terms!).&#60;/p&#62;
&#60;p&#62;Cheers, and thanks for your help, as always.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Transferring forum to another host server (intranet)"</title>
<link>http://bbpress.org/forums/topic/transferring-forum-to-another-host-server-intranet#post-19308</link>
<pubDate>Thu, 18 Sep 2008 07:57:10 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19308@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you didn't hack the core and just templates, all they need to do is install the same version of bbPress you have installed, send them your custom theme files to install, and then send them a full export of your bbpress db to replace their default install. Then it should be identical.
&#60;/p&#62;</description>
</item>
<item>
<title>RossB on "Transferring forum to another host server (intranet)"</title>
<link>http://bbpress.org/forums/topic/transferring-forum-to-another-host-server-intranet#post-19264</link>
<pubDate>Tue, 16 Sep 2008 02:31:55 +0000</pubDate>
<dc:creator>RossB</dc:creator>
<guid isPermaLink="false">19264@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am making this enquiry on behalf of the tech guy who is supposed to be migrating over to a uni intranet a bbPress forum I customised. &#60;/p&#62;
&#60;p&#62;I originally hosted it on the server of my own web host, and all was working fine. There were also a few posts by various members of the uni faculty I was designing a website and the forum for.&#60;/p&#62;
&#60;p&#62;The tech guy has been having trouble getting the customised version of the forum working on the uni intranet. I know very little technically, but I was thinking maybe it would be easier for him to simply download a new version of bbPress then copy and paste my customised pages. &#60;/p&#62;
&#60;p&#62;Not sure how he'd get the posts to show up with the posters' names and dates of their posts etc, though. I did email him the database of the bbPress forum I customised for them.  Would this be all he needs?&#60;/p&#62;
&#60;p&#62;I can't recall for certain which pages I customised, but I can look back through this forum to find out, I guess. Anyway, interested in the advice of techies here as to the easiest way for this uni tech person to approach the migration task.&#60;/p&#62;
&#60;p&#62;Cheers!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-18922</link>
<pubDate>Thu, 04 Sep 2008 19:23:38 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18922@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/bbpress-initiates-importexport-standard-for-web-forums&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/bbpress-initiates-importexport-standard-for-web-forums&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bryan868 on "PHPBB3 Converstion"</title>
<link>http://bbpress.org/forums/topic/phpbb3-converstion#post-18918</link>
<pubDate>Thu, 04 Sep 2008 18:31:10 +0000</pubDate>
<dc:creator>bryan868</dc:creator>
<guid isPermaLink="false">18918@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So what was the outcome from the Summer of Code?  Did we get a phpBB 3.0 converter?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Exporting bbPress to phpBB2?"</title>
<link>http://bbpress.org/forums/topic/exporting-bbpress-to-phpbb2#post-18830</link>
<pubDate>Mon, 01 Sep 2008 05:38:29 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">18830@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you upgrade to the latest bbPress trunk you will have access to the new BBXF exporter. There is also a standalone BBXF importer for phpBB, but I have not tested it yet. You will have to do some work to get it running at this early stage of development, this should be a lot easier as we move forward with this idea.&#60;/p&#62;
&#60;p&#62;For more check here &#60;a href=&#34;http://bbxf.org/&#34; rel=&#34;nofollow&#34;&#62;http://bbxf.org/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "bbPress initiates import/export standard for web forums"</title>
<link>http://bbpress.org/forums/topic/bbpress-initiates-importexport-standard-for-web-forums#post-18829</link>
<pubDate>Mon, 01 Sep 2008 05:33:48 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">18829@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Check the new project here.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbxf.org/&#34; rel=&#34;nofollow&#34;&#62;http://bbxf.org/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks to GSoC student Dan Larkin for his work over the Summer.&#60;/p&#62;
&#60;p&#62;BBXF is now available for review and testing in bbPress trunk and we plan to make it a bundled plugin in bbPress 1.0
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Exporting bbPress to phpBB2?"</title>
<link>http://bbpress.org/forums/topic/exporting-bbpress-to-phpbb2#post-18722</link>
<pubDate>Wed, 27 Aug 2008 17:52:19 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18722@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I tagged this for Sam Bauers, the developer who posted the original information at the GSOC page. Maybe he will stop by and add some insight.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
