<?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: vanilla</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: vanilla</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 06:32:43 +0000</pubDate>

<item>
<title>cicloid on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-16156</link>
<pubDate>Mon, 12 May 2008 14:10:49 +0000</pubDate>
<dc:creator>cicloid</dc:creator>
<guid isPermaLink="false">16156@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm also looking forward to your import.&#60;/p&#62;
&#60;p&#62;I'm thinking on moving a Vanilla forum to bbPress.&#60;/p&#62;
&#60;p&#62;If it works as charm, I will try you SQL statements right away.
&#60;/p&#62;</description>
</item>
<item>
<title>smoothmoniker on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-15963</link>
<pubDate>Sun, 04 May 2008 16:13:59 +0000</pubDate>
<dc:creator>smoothmoniker</dc:creator>
<guid isPermaLink="false">15963@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you Scooter! I'll give this a try when I have a moment. Or, it look like, when I have a half a day.
&#60;/p&#62;</description>
</item>
<item>
<title>scooter7978 on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-15924</link>
<pubDate>Fri, 02 May 2008 03:10:55 +0000</pubDate>
<dc:creator>scooter7978</dc:creator>
<guid isPermaLink="false">15924@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've refined it a bit further so that it grabs the last post ID of each of the topics so that the 'freshness' links work fine for old posts...&#60;/p&#62;
&#60;p&#62;I replaced the SQL to get the topics:&#60;br /&#62;
(SELECT 0) as LastPostID&#60;br /&#62;
to:&#60;br /&#62;
(SELECT MAX(CommentID) FROM LUM_Comment WHERE DiscussionID=LUM_Discussion.DiscussionID) AS LastPostID&#60;/p&#62;
&#60;p&#62;I can't edit my original post so if you use the above SQL, make sure you add this bit in.
&#60;/p&#62;</description>
</item>
<item>
<title>scooter7978 on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-15899</link>
<pubDate>Thu, 01 May 2008 02:16:32 +0000</pubDate>
<dc:creator>scooter7978</dc:creator>
<guid isPermaLink="false">15899@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm using Vanilla on my forums and since I like to change things every now and then, I'm going to move to BBPress in the near future. Since I'm testing at the moment, I thought I'd hand over the SQL statements for grabbing the categories, topics and posts and formatting them as best as possible for bbpress.&#60;/p&#62;
&#60;p&#62;SQL to get the categories:&#60;br /&#62;
SELECT CategoryID, Name, REPLACE( LCASE( Name ) , ' ', '-' ) AS Slug, Description, Priority&#60;br /&#62;
FROM LUM_Category&#60;/p&#62;
&#60;p&#62;SQL to get the topics:&#60;br /&#62;
SELECT DiscussionID, Name, REPLACE( Name, ' ', '-' ) AS Slug, AuthUserID,&#60;br /&#62;
(SELECT LUM_User.Name FROM LUM_User WHERE UserID = AuthUserID) AS PosterName,&#60;br /&#62;
LastUserID, (SELECT LUM_User.Name FROM LUM_User WHERE UserID = LastUserID) AS LastPosterName,&#60;br /&#62;
DateCreated, DateLastActive, CategoryID, Closed, Active, (SELECT 0) AS LastPostID, Sticky, CountComments, (SELECT 0) AS TagCount&#60;br /&#62;
FROM LUM_Discussion&#60;/p&#62;
&#60;p&#62;SQL to get the discussions:&#60;br /&#62;
SELECT CommentID, LUM_Discussion.CategoryID AS ForumID, LUM_Comment.DiscussionID, LUM_Comment.AuthUserID, Body, LUM_Comment.DateCreated, RemoteIp&#60;br /&#62;
FROM LUM_Comment&#60;br /&#62;
JOIN LUM_Category ON LUM_Discussion.CategoryID = LUM_Category.CategoryID&#60;br /&#62;
JOIN LUM_Discussion ON LUM_Discussion.DiscussionID = LUM_Comment.DiscussionID&#60;br /&#62;
ORDER BY CommentID, ForumID&#60;/p&#62;
&#60;p&#62;SQL to get the tags:&#60;br /&#62;
SELECT TagID, REPLACE( Tag, ' ', '-' ) , Tag, (SELECT 0) FROM LUM_DiscussionTags &#60;/p&#62;
&#60;p&#62;From there you will need to fix up the slugs in the bb_topics table and in the bb_forums so that the web browser doesn't have a conniption when it tries to load a forum thread but you can do that with a series of select(replace) queries like this:&#60;/p&#62;
&#60;p&#62;update bb_topics set topic_slug = replace(topic_slug,'?','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'.','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'/','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'&#38;amp;','and');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'&#38;quot;','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'\\','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'\&#34;','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'!','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,',','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'\'','');&#60;br /&#62;
update bb_topics set topic_slug = replace(topic_slug,'#','');&#60;/p&#62;
&#60;p&#62;There might be a better or quicker way of doing the last bit but since it works fine on mine I am not too concerned.&#60;/p&#62;
&#60;p&#62;I had to kludge some results in the queries like; SELECT 0 or SELECT 1 to get the answers I wanted or to pad out the columns to fit properly into the bbpress SQL layout. In most cases its just count fields or an active or open flag which is nearly always 1 or 0 anyway.&#60;/p&#62;
&#60;p&#62;Generally this is all you need to get started, from there you can just export this table data to a CSV or something and then import it into the requisite bbpress table. If you go into the admin interface of bbpress and get the system to recount everything it should be ok from there. I only recommend doing this if you're familiar with the inner workings of MySQL, otherwise you could bollocks things up and then noone wins.&#60;/p&#62;
&#60;p&#62;Please remember too that this is the basics, if you've integrated with wordpress you've still got some work ahead of you to coordinate your wordpress ID's with your forum ones. It can be done as I managed to do it, it's just painful.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Scott
&#60;/p&#62;</description>
</item>
<item>
<title>smoothmoniker on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-15840</link>
<pubDate>Mon, 28 Apr 2008 16:10:49 +0000</pubDate>
<dc:creator>smoothmoniker</dc:creator>
<guid isPermaLink="false">15840@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;yes please!&#60;/p&#62;
&#60;p&#62;I'd even be willing to kick in some cash if we want to get together, hire someone to write it, and then donate the code back to the bbpress project.
&#60;/p&#62;</description>
</item>
<item>
<title>Righton on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-11779</link>
<pubDate>Fri, 02 Nov 2007 17:04:25 +0000</pubDate>
<dc:creator>Righton</dc:creator>
<guid isPermaLink="false">11779@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Anyone ever come up with a solution from Vanilla to BBPress? I'm having daily requests to move from Vanilla and NO ONE has a converter.
&#60;/p&#62;</description>
</item>
<item>
<title>Ziyphr on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-4715</link>
<pubDate>Wed, 21 Feb 2007 10:48:53 +0000</pubDate>
<dc:creator>Ziyphr</dc:creator>
<guid isPermaLink="false">4715@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The last phpBB to Vanilla converter doesn't work perfectly with the latest Vanilla so needs some fiddling. Both Vanilla and bbPress could do with investing in a universal converter similar to what punBB has. It's a lot of work but will be worthwhile.
&#60;/p&#62;</description>
</item>
<item>
<title>bbolman on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-4704</link>
<pubDate>Wed, 21 Feb 2007 00:46:55 +0000</pubDate>
<dc:creator>bbolman</dc:creator>
<guid isPermaLink="false">4704@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there a vanilla to phpbb deal? That seems like the easiest way to go...&#60;/p&#62;
&#60;p&#62;the bbPress folks ought to consider hiring a team member or somebody to just work on importers. Without them it makes getting people to make the move just that much harder.
&#60;/p&#62;</description>
</item>
<item>
<title>Ziyphr on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-4676</link>
<pubDate>Tue, 20 Feb 2007 09:40:08 +0000</pubDate>
<dc:creator>Ziyphr</dc:creator>
<guid isPermaLink="false">4676@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm currently looking at Vanilla and bbPress, may I ask what you didn't like about Vanilla, in comparison to bbPress?
&#60;/p&#62;</description>
</item>
<item>
<title>Bruz on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-4675</link>
<pubDate>Tue, 20 Feb 2007 09:22:14 +0000</pubDate>
<dc:creator>Bruz</dc:creator>
<guid isPermaLink="false">4675@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I would also do the switch - if there was an importer...
&#60;/p&#62;</description>
</item>
<item>
<title>thomasklaiber on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-1715</link>
<pubDate>Wed, 29 Nov 2006 19:57:30 +0000</pubDate>
<dc:creator>thomasklaiber</dc:creator>
<guid isPermaLink="false">1715@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ehm ... i think with a lot of work it should be doable to grab the rss-feed, re-format it and put it into the bbpress database ... but i can't do that :-D
&#60;/p&#62;</description>
</item>
<item>
<title>so1o on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-1714</link>
<pubDate>Wed, 29 Nov 2006 19:42:08 +0000</pubDate>
<dc:creator>so1o</dc:creator>
<guid isPermaLink="false">1714@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;vanilla has rss feeds
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-1687</link>
<pubDate>Wed, 29 Nov 2006 04:13:34 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1687@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have checked for importers for any forum package out there and I am not sure if Vanilla will import to any software package.    Does anyone know if it has rss feed so at least you could try exporting it that way?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>Bruz on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-1675</link>
<pubDate>Tue, 28 Nov 2006 11:39:03 +0000</pubDate>
<dc:creator>Bruz</dc:creator>
<guid isPermaLink="false">1675@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Same over here - I need a convertor to switch... really can't do this by hand :-)
&#60;/p&#62;</description>
</item>
<item>
<title>karmatosed on "Importing from vanilla"</title>
<link>http://bbpress.org/forums/topic/importing-from-vanilla#post-399</link>
<pubDate>Mon, 23 Oct 2006 20:08:39 +0000</pubDate>
<dc:creator>karmatosed</dc:creator>
<guid isPermaLink="false">399@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, I see there is an importing from phpbb but I've got a slightly different issue with vanilla. I like it but love bbpress much more now and would love to bring over my site to it. Is there anyone with any ideas on where to start on this and possibly some help over that. It would be greatly appreciated.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
