David IB
Fri 27th Jun '08, 7:43pm
We are using ImpEx to migrate one of our sites from MegaBBS 2.2 to vBulletin 3.7.2. We are trying to retain as much information from the original site as possible.
First, I just wanted to let you know about a little bug with Impex that we found. Apparently, if a user is not listed in a user group on MegaBBS, Impex just skips the import of that user and reports an “Invalid user object, skipping.usergroupid” error. We were able to fix this problem by making sure that if a NULL value is found, it is assumed that the user belongs in the registered users group and they are placed there.
As a temporary fix, we changed the following file: impex/systems/megaBBS/004.php
This line:
$try->set_value('mandatory', 'usergroupid', $user_group_ids_array[69]);
To this line:
$try->set_value('mandatory', 'usergroupid', '#'); # Where ‘#’ represents the group ID for registered users
I am not sure if this is helpful but we thought you may want it in case anyone else has this issue. This allows every user to be imported.
Now for my questions.
Is there ANY way to get the passwords imported and working for users? Or was this left out because it was not possible? None of the passwords for the users we imported work.
Do you have any recommendations to get the attachments imported? We understand that this is not supported at this time. The attachments are a big part of the community we are attempting to migrate.