Been working on trying to merge them. I went from from the portmod phpbb to phpbb 2 and porting to vbulletin to nuke. I'm not a PHP guru.
I have the user inserting into the nuke table but unable to get the username and email to show up. My thoughts are since I already have thousands of users in the nuke_users table the user should be added to vb instead of trying to insert the user to nuke. Think I'm on the right track.
So in Your Account module should be something similar:
PHP Code:
$db->sql_query("INSERT INTO vbuser (userid,username,password,email,usergroupid) VALUES ($userid,'".addslashes(htmlspecialchars($username))."','".addslashes(md5($password))."','".addslashes(htmlspecialchars($email))."','2')");
You would also need to do some adjusting to vb and phpnuke account files so if the user updated there information as such:
PHP Code:
$db->sql_query("UPDATE vbuser SET signature='".addslashes($signature)."', email='".addslashes(htmlspecialchars($email))."',usergroupid='2' WHERE userid='$userid'");
Let me know if I'm on the right track.