Hi there,
we've recently moved out forums from phpbb to mybb as we found it's generally better for customizations (even though we've a considerable performance drop on the server side).
The actual problem is that we've had serious problems with the user migration - out of about 2600 users (with SELECT COUNT(*) FROM phpbb_users) we've missed 250 or so, and after a couple retries we've reduced this to about 45 users.
Next up is the emoticons. PHPBB apparently stores emoticons like
<!-- s:saveme: --><img src="{SMILIES_PATH}/d33561e9.gif" alt=":saveme:" title=":saveme:" /><!-- s:saveme: -->
for emoticon :saveme:. However these were left in the above state in our forums after the migration.
I've been trying to create a PHP file to update the contents of the already migrated posts (matching up username and dateline, which works perfectly) after a few more lines of regex, but I fail to make it work ^^
we've recently moved out forums from phpbb to mybb as we found it's generally better for customizations (even though we've a considerable performance drop on the server side).
The actual problem is that we've had serious problems with the user migration - out of about 2600 users (with SELECT COUNT(*) FROM phpbb_users) we've missed 250 or so, and after a couple retries we've reduced this to about 45 users.
Next up is the emoticons. PHPBB apparently stores emoticons like
<!-- s:saveme: --><img src="{SMILIES_PATH}/d33561e9.gif" alt=":saveme:" title=":saveme:" /><!-- s:saveme: -->
for emoticon :saveme:. However these were left in the above state in our forums after the migration.
I've been trying to create a PHP file to update the contents of the already migrated posts (matching up username and dateline, which works perfectly) after a few more lines of regex, but I fail to make it work ^^