• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Migration from JiveForum

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use JiveForum 3.x, anyone have ide how to migrate it to JForum?
[originally posted on jforum.net by fthamura]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hm, I never tried yet. We can work on it, if you want ( eg, I help you with the migration, tips and so on ).

Rafael
[originally posted on jforum.net by Rafael Steil]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
give me the first step. I use Jive 3.04 here. :?:
[originally posted on jforum.net by fthamura]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
When I started coding the port from phpbb ( http://www.jforum.net/confluence/display/migration ), the start step was to look - surprise - to the table strucutres, and see the relations.

The table names are quite easy to guess ( jforum_topics for the topics, jforum_users for user, jforum_posts and jforum_posts_text for opsts and text etc ).

Next, we need to check the posts text. The main job is to see how jive handles bbtags and, if they differ from the way that jforum does, write some java code to port it.
For example, phpbb put some hash in the tags, like [b:s386xda], and jforum does not. So, the migration utility had to remove these hashes before wrting to the database.

Also, date and time are slight as well, so some manipulation were also needed.

You can take a look in the source code: https://jforum-tools.dev.java.net/source/browse/jforum-tools/phpbb2jforum/

Rafael
[originally posted on jforum.net by Rafael Steil]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic