We have registerations on VB disabled, and in v2.x.x we used the following SQL query to add users..
PHP Code:
$sql_users="INSERT INTO user (userid,usergroupid,username,password,email,joindate,signature) VALUES ($player_id,2,'".addslashes($row["user_name"])."','".$set_pass."','".$row["email"]."',".time().",'')";
This worked great, however in VB3 this dosent seem to work ... The user gets added but the "Welcome to our newest member" still shows the last user, when I go directly to the USERID for this user it says "Invalid User specified" ...
Is there something else I need to pass to the user table, which is new in V3 that I am missing?
Thanks in advance.