Recent content by Necrophyte

  1. N

    vBulletin 5 to Xenforo Importer

    I have to step out for a bit, but once I get back, I'll look at the file and should be able to fix fairly quickly.
  2. N

    vBulletin 5 to Xenforo Importer

    Its all good. I remember being new to PHP. But I had a little coding background from when I was younger. I try to remember how it was when I was learning :) Whats line 609 look like? Actually your better off sending me the file in a PM and we can continue this convo through PM's instead of here.
  3. N

    vBulletin 5 to Xenforo Importer

    And you removed the ? So it should say $row2['d_member'] >= 2) ? "<input echo "<tr><td>Forums</td><td style='text-align: center;'>".$row['forum']."<input type='hidden' name='total' value='".$row['forum']."'></td><td style='text-align: center;'>".($row2['d_forum'] ...
  4. N

    vBulletin 5 to Xenforo Importer

    $row2['d_member'] >= 2) You removed the )
  5. N

    vBulletin 5 to Xenforo Importer

    Look for this. $row2['d_member'] >= $row['member'] Change it to $row2['d_member'] >= 2 There should be 2 of them. Close to those line numbers I gave you.
  6. N

    vBulletin 5 to Xenforo Importer

    Nope lol $nope is just a variable not an array. $nope = "@&/*!;:"; The above is better and should work. The process will be where you left off. You wont have to redo the usergroups. But when you click members. It will restart the members process. Because members are skipped. You'll also need...
  7. N

    vBulletin 5 to Xenforo Importer

    Yes, once the users are in. You'll have the option to move the forums. The forums need the members in order to put them in as it needs to know who created them etc. So the user id's need to exist. The threads need forum ids in order to create the threads so they know what forum they belong too...
  8. N

    vBulletin 5 to Xenforo Importer

    Yep. You have a username that has @ in it. vBulletin allows all sorts of weird names. Most people blocked that stuff though. What you can do. Is look for the user that has @ in their username and change it to an uppercase A. When you are done. You can change it back in the xenforo database. Or...
  9. N

    vBulletin 5 to Xenforo Importer

    The Undefined variable is fine. The Fatal Error means you have a user that has less than 3 characters in it. You can go to xenforo admin, Options, and then User Registration. Scroll down. You'll see min 3 max I think default is 20. Change those to the smallest username you have and to the...
  10. N

    vBulletin 5 to Xenforo Importer

    Yes, You need to convert the usergroups before you can do anything else. So in the drop down are the xenforo user groups. On the left. Is your vbulletin user groups. Since vbulletins usergroups are not in Xenforo. You need to either create them. Or change them to an existing Xenforo usergroup...
  11. N

    vBulletin 5 to Xenforo Importer

    You wont need the CMS ones or the Channel ones since Xenforo doesn't use that. Or you could keep them and use them for permissions for other Xenforo mods like Xen Porta. Up to you.
  12. N

    vBulletin 5 to Xenforo Importer

    That is where you link up existing Xenforo groups. So unregistered/Not logged in is a vBulletin User group.. Which one of the Xenforo usergroups best suits that for you.. If none of them. Create new, If you don't want that user group anymore. Ignore. Make sense?
  13. N

    vBulletin 5 to Xenforo Importer

    The first one means it cannot connect to the DB. Make sure everything is correct. define('XF_DB_NAME', 'scbuekeedq'); This is the name of the database. Not the user. This should be something like 'xenforo' The vb version by default would be 'vBulletin' The second error happened because it...
  14. N

    vBulletin 5 to Xenforo Importer

    Exactly as I said before. 'XF_ROOT' is set define('XF_ROOT', $_SERVER['DOCUMENT_ROOT']."'/home/94079.cloudwaysapps.com/scbuekeedq/public_html/forum"); The above ="/home/137258.cloudwaysapps.com/scbuekeedq/public_html/'/home/94079.cloudwaysapps.com/scbuekeedq/public_html/forum" Notice the /'/...
  15. N

    vBulletin 5 to Xenforo Importer

    /home/137258.cloudwaysapps.com/scbuekeedq/public_html/'/home/94079.cloudwaysapps.com Do you see the /'/ Thats wrong something isn't right. You also shouldn't have 2 home folders. define('XF_ROOT) should look something like this define('XF_ROOT', $_SERVER['DOCUMENT_ROOT']."/forum"); Where forum...
Top Bottom