The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#8
|
|||
|
|||
![]()
I do the following to create hundreds of users at a time.
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY); $userdm->set('username', $tsData[uName]); // My new name is in this array. $userdm->set('password', 'admin@yoursitename.com); $userdm->set('email', 'adminXYZ@yoursitename.com); $userdm->set('usertitle', 'Auto-Generated User'); $userdm->set('usergroupid', 9); // My own custom user group for auto-generated userID's $tsData[UID] = $userdm->save(); $db->query_write("UPDATE user SET email = '' WHERE userid = '$tsData[UID]'"); // Erase the email address so you can use it over again. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|