Recent content by bidorbuy

  1. bidorbuy

    vBulletin 5 to Xenforo Importer

    Question: I noticed that "Forums" is empty - the following query produces ZERO results: SELECT COUNT(*) AS forum FROM node INNER JOIN closure ON node.nodeid = closure.child WHERE node.nodeid <> 2 AND closure.parent = (SELECT contenttypeid FROM contenttype WHERE class =...
  2. bidorbuy

    vBulletin 5 to Xenforo Importer

    If have added the following after the while statement on 603 - this will skip users with empty email, username less than 3 characters and user-groups which do not exist (if you choose to ignore a custom user group) while ($row = $result->fetch_assoc()){ // Skip if username looks...
  3. bidorbuy

    vBulletin 5 to Xenforo Importer

    Yes. I think our forum is the poster-child of how horrible user data can get. I assume we are your worst test case ;-)
  4. bidorbuy

    vBulletin 5 to Xenforo Importer

    Thanks - some more feedback: "Uncaught XenForo_Exception: Please enter a name that does not resemble an email address. in /data/www/html/xenforo/library/XenForo/DataWriter.php:1359 Stack trace: #0 /data/www/html/xenforo/library/XenForo/DataWriter.php(1401)...
  5. bidorbuy

    vBulletin 5 to Xenforo Importer

    Thank you - a few more questions: 1) I get the following error when importing users (looks like some details on our old forum are empty): 2) Is this correct? i.e. setting the password always to the same value? 3) If the email is empty, should we just skip the member?
  6. bidorbuy

    vBulletin 5 to Xenforo Importer

    I can't get it to work. MySQL config is correct as I can see that the conv_link table is created, but it fails on line #184 with error: "Fatal error: Uncaught Error: Call to undefined method mysqli_result::fetch() in /data/www/html/xenforo/convert_vb5.php:184 Stack trace: #0 {main} thrown in...
Top Bottom