Connecting to the vBulletin database
My vBulletin mysql database is separate from the Drupal 7 database, so I'm connecting to it at the top of each of my migrate .inc files,
Migrating Blob avatar and profile images
vBulletin stores the avatar and profile images in 'blob' fields (filedata). The following vbulletin_blob.inc can be used to get them into
Migrating vBulletin Forum Structure with vbulletin_forum.inc
With vBulletin Roles and Users in D7, we can now create a class to import the Forum structure...threads and posts to follow
Migrating vBulletin Posts with vbulletin_forum.inc
With roles, users, forum structure and threads migrated, we can now add posts to the threads with something like...
Migrating vBulletin Tags in vbulletin_forum.inc
Some of my vBulletin site's threads and posts have tags that I'd liked to migrate to Drupal. vBulletin stores this data in the 'tag' table,
Migrating vBulletin Threads with vbulletin_forum.inc
With roles, users and forum structure in place, we can now look at migrating threads from the vBulletin database threads table with
Migrating vBulletin Users with vbulletin_users.inc
After vBulletin Roles Migration we can migrate the vBulletin users. The following was added to the vbulletin_user.inc
vBulletin Roles Migration with vbulletin_roles.inc
Before migrating from vBulletin, we need to identify a sequence of migrations where one class might first rely on another to be loaded with