I can try to answer a few of these:
Quote:
Is there a way to programmatically create a vbulletin user?
|
Yes, the code is in admincp/user.php, around line 963, it starts like this:
PHP Code:
// ###################### Start do update #######################
if ($_POST['do'] == 'update')
{
so copying that would probably be a good place to start.
Quote:
Is there a way to not allow manual user registration?
|
I'm not sure if there's an option to turn it off, but I think you could take out the links to the register page (or change them to go elsewhere) by editing templates, and also remove register.php.
Quote:
Can we edit the user's vbulletin alias at any given time?
|
Yes, I believe you can change the vb user name whenever you want using the same code from admincp/user.php to create/edit a user (create a dm object, set only the userid and name fields, then save). You'd have to test that though, I'm not sure which fields are needed to be save to call save() successfully. I think if you have the user's info you can call set_existing(), then you'd just need to set a new username. (See includes/class_dm_user.php).