View Full Version : Add new Users (automatically)
Andreas
06-09-2005, 10:00 PM
As this is a common request for integration purposes, I thought I should write up another HowTo :)
If you want to add a new user to the vBulletin database, you can use Class vB_Datamanager_User.
This Calss does make sure that everything is OK, it will also take care of the default registration options.
Example
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', 'phpNukeUser');
$newuser->set('email', 'foo@bar.com');
$newuser->set('password', 'verysecret');
$newuser->set('usergroupid', 2);
If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
$newuser->errors
This is an array containing the errors.
If everything is OK
$newuserid = $newuser->save();
This will create a new User called phpNukeNuser (UserID returned in $newuserid).
You can also set many other info too:
membergroupids = comma-separated string of all additional usergroups (Default=Empty)
displaygroupid = ID of the usergroup this user should show up as (Default=0)
Note that this must be set after usergroupid and membergroupids!
styleid = ID of the Style to be used by this user (Default=Board Default)
languageid = ID of the language to be used by this user (Default=Board Default)
threadedmode = Whether to use Flat (0), Hybrid (1) or Threaded (2) Display Mode
maxposts = Integer, how many posts should be shown on one Page (Default=Board Default)
ipaddress = String, IP-Adress of the User registering (Default=Empty)
refererid = String, Username or UserID of the User this user was refered by
parentemail = String. eMail-Address of the users Parents
daysprune = Integer, show threads from the last X days
startofweek = Integer, When does the week start (1=Sunday, 2=;onday, ...) (Default=Board Default)
timezoneoffset = Integer, spexifying the Timezone (-12 .. +12)
autosubscribe = Integer, defining default mode for Thread subscription
-1 = no Subscription, 1 = Instant, 2 = Daily Digest, 3 = Weekly Digest
(Default=Board Default)
homepage = String, URL of the users Homepage (Default=Empty)
icq = String, the Users ICQ # (Default=Empty)
aim = String, the Users AIM ID (Default=Empty)
yahoo = String, the Users Yahoo ID (Default=Empty)
MSN = String, the Users MSN ID (Default=Empty)
usertitle = String, the Usertitle this user should have
customtitle = Integer, defining behaviour of Usertitle. 0=No Custom Title, 1=Custom, Title with HTML, 2=Custom Title without HTML (Default=
birthday = array(month, day, year). The users birthdate.
avatarid = Integer, ID of the Avatar being used for this user
signature = String. The Users Signature
subfolders = Array. The Users Subscription Folders
pmfolders = Array. The Users Subscription Folders
buddylist = String. Space separated List of UserIDs defining the Users buddylist
ignorelist = String. Space separated List of UserIDs defining the Users ignorelist
Besides that, you can also set the options Bitfield (Receive Admin PMs, etc.)
$userdata->set_bitfield('options', 'optionname', 'value');
The available Options are
showsignatures = Show Signatures
showavatars = Show Avatars
showimages = Show Images, incl. attached Images and [img] BBCode
If this is not set they will show up as links
coppauser = User is COPPA User
adminemail = Receive Admin eMails
showvcard = Allow vCard Download
dstauto = Automatically detect DST setting
dstonoff = DST turned On
showemail = Receive eMails from other Users
invisible = Be invisible
showreputation = Show Reputation
receivepm = PM turned on
emailonpm = eMail notification for new PMs
Value must be 0 or 1 (false or true), depending if you want to set the option or not.
If the Options are not set, the Default Registration Options/Board Default Options will be used.
Important Notice
It is assumed that you are using this code from 'within' vBulletin, eg with the vBulletin backend loaded.
If this is not the case, you must include smth. like the following code in global context:
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 1);
define('SKIP_USERINFO', 1);
define('CWD', '/path/to/vbulletin');
require_once(CWD . '/includes/init.php');
Keep in mind that if you are using the a/m Datamanager-Code within a function or method you must global $vbulletin.
This How-To is (C) 2005 by KirbyDE and you are not allowed to redistribute it in any way without my explicit consent.
MrNase
06-10-2005, 02:30 PM
What does $newuser->errors look like? Is it an array() so that we have to use foreach ( ... AS ...) { } to display them?
Andreas
06-10-2005, 02:34 PM
Example (Username already taken):
Array
(
[0] => That username is already in use. If you are phpNukeuser and you have forgott click <a href="login.php?do=lostpw">here</a>
)
Revan
06-10-2005, 03:24 PM
Good, thanks for clarifying the array. I wrote my own error handler for the events I needed to output any errors, and it was a simple foreach that went like this:
foreach ($pmdm->errors as $errors)
{
$error .= "<li>$errors</li>";
}The $error was then echoed out in the print_standard_error.
Btw while Im at it, if we need to for instance add 2 users with different values, or send 2 pms, do we need to put the $newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY); line every time? Also do the variable names have to be different for those 2 instances?
TIA :)
Marco van Herwaarden
06-10-2005, 03:54 PM
What does $newuser->errors look like? Is it an array() so that we have to use foreach ( ... AS ...) { } to display them?Please read the stickied post in the top of this forum.
Please read the stickied post in the top of this forum.
So...we aren't allowed to ask questions in these How-to threads, is that what you are referring to the sticky thread for?
Seems a bit strange to me...surely that thread is meaning 'Don't Start question threads'.
I don't see the point in this, why not just create a new user via the admin cp?
Andreas
06-15-2005, 04:03 AM
I don't see the point in this, why not just create a new user via the admin cp?
As this is a common request for integration purposes,
Does this answer your question? :)
What if you want to create a new user, assign him
$newuser->set('usergroupid', 10);
but you'd like his email verified first through the usual system and once he gets verified then he's placed in 10?
EDIT: I keep clicking on the black font color, in this screen the above text turns black. I hit enter, it reverts to green?
Andreas
06-29-2005, 10:42 PM
You would have t hook into register_activate_process and change the Usergroupid there.
Anyway, the described method does not generate an activation ID and such.
If you are interested in this I can write up some description.
You would have t hook into register_activate_process and change the Usergroupid there.
Anyway, the described method does not generate an activation ID and such.
If you are interested in this I can write up some description.
I will be using the activation ID eventually and it would be very helpful. But I'm in no urgent rush at all for this.
What files need to be included to get this to work?
I don't see the function datamanager_init in class_dm_user.php
Thanks
Anyway, the described method does not generate an activation ID and such.
If you are interested in this I can write up some description.
Ok, can u describe how to make user whith waiting for activation with emailing of that?
Please read the stickied post in the top of this forum.
I cant imagine that this falls under the "dont ask questions". This question was specific to this howto about improving it with the format of a mentioned error variable.
scott8539
10-28-2005, 07:45 PM
As this is a common request for integration purposes, I thought I should write up another HowTo :)
If you want to add a new user to the vBulletin database, you can use Class vB_Datamanager_User.
This Calss does make sure that everything is OK, it will also take care of the default registration options.
Example
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', 'phpNukeUser');
$newuser->set('email', 'foo@bar.com');
$newuser->set('password', 'verysecret');
$newuser->set('usergroupid', 2);
.....
Perhaps I am missing something...but I cannot get the above code to work. Could you provide a complete, self contained script that can be executed on the cmd line (or exec'd or remote require'd from another program)? I have searched through this forum and found examples of creating a thread (https://vborg.vbsupport.ru/showthread.php?t=97283) , but this is the only code reference to creating a user --- which is exactly what I am after!
My goal in this is to have my own CMS manage the registration: The user will register in my CMS (custom designed CMS -- this is not a 3rd party off-the-shelf CMS), then call a script to add the user to the forum.
Thanks!
-Scott
vB 3.5
J75595E3F40B
11-03-2005, 07:46 PM
yes I also cannot get the script above to work.. do I need to initialize $vbulletin via a constructor?
akanevsky
11-03-2005, 08:07 PM
yes I also cannot get the script above to work.. do I need to initialize $vbulletin via a constructor?
The script works as long as you use it on a vbulletin-powered page.
J75595E3F40B
11-03-2005, 08:22 PM
What would be necessary to use the user data-manager from outside a vbulletin-powered page?
Andreas
11-03-2005, 09:11 PM
The vBulletin backend, which makes it a vBulletin powered page :)
scott8539
11-03-2005, 09:46 PM
I finally got a working script to add a user to vB offline. I maintain a separate Membership System. When a user registers in this separate system, an account is automatically created for them in vB.
When they register (again, this is in my own Member System -- on a different domain), I collect those variables that I need specifically (and minimally) to create an account in vB.
I then cURL those variables to a custom script (called bb_add_user.php) which resides in the root folder of the forum. The results of bb_add_user.php are printed, which are then collected in the result of the cURL. If there are errors, the Membership System takes appropriate action. If successul, then I grab the vbuserid from the cURL result and go about my business.
Although I am still proving this system on a development server, my goal will be to change all of the 'register.php' links on vBulletin and point them to the register script on my Membership System.
Here is the bb_add_user.php code.
<?php
# Add a user to vBulletin (offline)
function qpc_post($varname)
{
return trim(stripslashes((get_magic_quotes_gpc()) ? $_POST[$varname] : addslashes($_POST[$varname])));
}
define('THIS_SCRIPT', 'bb_add_user.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', qpc_post('username'));
$userdm->set('email', qpc_post('email'));
$userdm->set('password', qpc_post('password'));
$userdm->set('usergroupid', 2);
$userdm->set('ipaddress', qpc_post('ipaddress'));
$userdm->set('referrerid', qpc_post('referrername'));
$userdm->set('timezoneoffset', qpc_post('timezoneoffset'));
$userdm->set_bitfield('options', 'adminemail', intval(qpc_post('adminemail')));
$userdm->set_bitfield('options', 'showemail', intval(qpc_post('showemail')));
$dst_setting = intval(qpc_post('dst'));
switch ($dst_setting)
{
case 0:
case 1:
$userdm->set_bitfield('options', 'dstonoff', $dst_setting);
break;
case 2:
$userdm->set_bitfield('options', 'dstauto', 1);
break;
}
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
?>
akanevsky
11-03-2005, 09:48 PM
You shouldn't use CURL, as vBulletin data managers have data verifiers of their own. Just supply the raw values...
scott8539
11-03-2005, 09:53 PM
You shouldn't use CURL, as vBulletin data managers have data verifiers of their own. Just supply the raw values...
I am not sure what you mean by supplying the raw values...that is pretty much what I am doing with cURL. What would be another way of supplying the values?
Wayne Luke
11-03-2005, 10:11 PM
Can anyone write a proof of concept on how this would be done? I mean a complete file that would accept POST values from another page, instantiate the manager and create the user?
akanevsky
11-03-2005, 10:53 PM
Of course. Except the official vB documentation provides all the information of this matter... At least about using GPC for POST values....
J75595E3F40B
11-04-2005, 02:08 PM
i got a script working that does the same thing, and i noticed one thing..... that script must be in the same directory as global.php
Dark_Wizard
11-05-2005, 10:07 AM
i got a script working that does the same thing, and i noticed one thing..... that script must be in the same directory as global.php
Uhmm...incorrect. Try this piece from Dark Visor here about outside of vBulletin pages -> Using vBulletin-powered scripts outside vBulletin Directory (https://vborg.vbsupport.ru/showpost.php?p=791513&postcount=1).
Connector
12-27-2005, 07:54 PM
I finally got a working script to add a user to vB offline. I maintain a separate Membership System. When a user registers in this separate system, an account is automatically created for them in vB.
When they register (again, this is in my own Member System -- on a different domain), I collect those variables that I need specifically (and minimally) to create an account in vB.
I then cURL those variables to a custom script (called bb_add_user.php) which resides in the root folder of the forum. The results of bb_add_user.php are printed, which are then collected in the result of the cURL. If there are errors, the Membership System takes appropriate action. If successul, then I grab the vbuserid from the cURL result and go about my business.
Although I am still proving this system on a development server, my goal will be to change all of the 'register.php' links on vBulletin and point them to the register script on my Membership System.
Here is the bb_add_user.php code.
<?php
# Add a user to vBulletin (offline)
function qpc_post($varname)
{
return trim(stripslashes((get_magic_quotes_gpc()) ? $_POST[$varname] : addslashes($_POST[$varname])));
}
define('THIS_SCRIPT', 'bb_add_user.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', qpc_post('username'));
$userdm->set('email', qpc_post('email'));
$userdm->set('password', qpc_post('password'));
$userdm->set('usergroupid', 2);
$userdm->set('ipaddress', qpc_post('ipaddress'));
$userdm->set('referrerid', qpc_post('referrername'));
$userdm->set('timezoneoffset', qpc_post('timezoneoffset'));
$userdm->set_bitfield('options', 'adminemail', intval(qpc_post('adminemail')));
$userdm->set_bitfield('options', 'showemail', intval(qpc_post('showemail')));
$dst_setting = intval(qpc_post('dst'));
switch ($dst_setting)
{
case 0:
case 1:
$userdm->set_bitfield('options', 'dstonoff', $dst_setting);
break;
case 2:
$userdm->set_bitfield('options', 'dstauto', 1);
break;
}
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
?>
could someone please tell me how could we use this code ? i try it and give me error :devious:
scott8539
12-27-2005, 08:09 PM
could someone please tell me how could we use this code ? i try it and give me error :devious:
Geez, that was a long time ago and I have taken a completely different approach to it.
I do have my own way of creating a vB account from an external site. In fact, I just went live with it today.
forum.bodybuilding.com (http://forum.bodybuilding.com)
If you click the register link, you will be redirected to a register script on a different site (my.bodybuilding.com -- different subdomain). There you enter your user information and submit. A new user is created in my Membership System, then the user is created in vBulletin.
The register, login/logoff, activation, recover lost password, edit email & password, etc, are are handled in my separate Membership System, pushing the results to vBulletin.
macks
12-29-2005, 03:21 AM
I am in the process of writing a user signup integration script. My forum runs on a separate server from my main site. I am going to need to write hooks in quite a few places. I've compiled a list of the spots where I will need to have remote vB hooks.
Initial user signup:
Add the user, put them in the email confirmation group. (my site sends a confirmation email).
Confirmation:
When the user clicks the link in the confirmation email.
Password and email changes:
When the user wants to change their email or password.
This will all need to be done from a remote server so I too will most likely be using cURL. Obviously I want to keep these changes in sync. It isn't fully clear to me if it would be easier to write a plugin with change password/email hooks that will update my system or if I should just deny these changes from the vBulletin side and change the permission denied template to point to the proper place on my site.
Once I've hammered through the few remaining issues, I will post my results and code here.
Geez, that was a long time ago and I have taken a completely different approach to it.
I do have my own way of creating a vB account from an external site. In fact, I just went live with it today.
forum.bodybuilding.com (http://forum.bodybuilding.com)
If you click the register link, you will be redirected to a register script on a different site (my.bodybuilding.com -- different subdomain). There you enter your user information and submit. A new user is created in my Membership System, then the user is created in vBulletin.
The register, login/logoff, activation, recover lost password, edit email & password, etc, are are handled in my separate Membership System, pushing the results to vBulletin.
Woops, just read your post and you seem to be describing everything I just mentioned. Care to give the rest of an idea of how long it took?
Connector
12-29-2005, 12:21 PM
Could someone put basic code how to do this ?
GrowersPro
01-05-2006, 02:47 AM
following code place earlier plus example of code for the curl call in php
STEP I
this file need to to be placed in the forum directory of vbulletin
(make sure it is in this directory to initialise vbulletin stuff ......)
no change done from previous poster
you can include the code below in one php page. call it whatever you want
i call it great_stuff_dude.php
thus i need to MAKE sure that the name of the page is correctly entered
in the define below
define('THIS_SCRIPT', 'GREAT_STUFF_DUDE.php');
do the same in the code below
----------------------------------------------------------------------
<?php
# Add a user to vBulletin (offline)
function qpc_post($varname)
{
return trim(stripslashes((get_magic_quotes_gpc()) ? $_POST[$varname] : addslashes($_POST[$varname])));
}
define('THIS_SCRIPT', 'GREAT_STUFF_DUDE.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', qpc_post('username'));
$userdm->set('email', qpc_post('email'));
$userdm->set('password', qpc_post('password'));
$userdm->set('usergroupid',qpc_post('usergroupid'));
$userdm->set('ipaddress', qpc_post('ipaddress'));
$userdm->set('referrerid', qpc_post('referrername'));
$userdm->set('timezoneoffset', qpc_post('timezoneoffset'));
$userdm->set_bitfield('options', 'adminemail', intval(qpc_post('adminemail')));
$userdm->set_bitfield('options', 'showemail', intval(qpc_post('showemail')));
$dst_setting = intval(qpc_post('dst'));
switch ($dst_setting)
{
case 0:
case 1:
$userdm->set_bitfield('options', 'dstonoff', $dst_setting);
break;
case 2:
$userdm->set_bitfield('options', 'dstauto', 1);
break;
}
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
?>
-------------------------------------------------------------------
STEP II
You can have the following code on server running PHP WHEREVER YOU WANT. it does not need to be on the same domain as long as you have the curl compiled
in that script (again call it whatever you want it does not matter)
you call the url of your web server and path to go to the page GREAT_STUFF_DUDE.php
you can of course include it in the login code of your CMS to create profiles in both systems in one step.
-------------------------------------------------------------------
<?php
$url="http://www.mysite.com/vbulletin3000/GREAT_STUFF_DUDE.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "username=keith_mayass&email=keith_mayass@no_worrys.com&password=up_yours&usergroupid=2&");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$store = curl_exec ($ch);
$content = curl_exec ($ch); # This returns HTML
curl_close ($ch);
?>
---------------------------------------------------------
you can of course pass as may variables as you want if you have them available in your CMS to complete the profile.
like
parentemail
showbirthday
homepage
icq
aim
yahoo
msn
skype
usertitle
customtitle
birthday
__-----__________------___
Ni vu ni connu, jt' embrouille
Langly
01-07-2006, 08:12 PM
I use Postnuke, so which file in Postnuke to I put the curl code in and where in the file?
Connector
01-11-2006, 05:12 AM
This code dose not work i try it and give me error please Help :*
Langly
01-11-2006, 11:00 AM
Thread might be dead.
bkbelew
03-16-2006, 05:06 PM
Any update on this? I managed to add a user to the Vb database w/ just a couple simply mysql calls. But.... the password encryption was wrong ( i'm assuming ) it wouldn't allow the user to login. BUT if the user went through the lost password function, it would allow them to. Could someone help me w/ the command to encrypt the password w/ salt or whatever its using to add it into my database w/out having to hook anything from vb?
Thanks
If you click the register link, you will be redirected to a register script on a different site (my.bodybuilding.com -- different subdomain). There you enter your user information and submit. A new user is created in my Membership System, then the user is created in vBulletin.
The register, login/logoff, activation, recover lost password, edit email & password, etc, are are handled in my separate Membership System, pushing the results to vBulletin.
I'm looking for something exactly like that! Anyone know how I would accomplish this? :banana:
Altec
05-15-2006, 10:52 AM
I've managed to automatically add users to vBulletin via our website which is done in ASP. The only issue I'm having is that a user cannot 'SAVE' their signature (strange). Everything else works great...
Anyone have any ideas why?
Thanks.
Connector
05-15-2006, 01:28 PM
Why you have make it in ASP and not php ?
bigtime
05-30-2006, 09:38 PM
How would a new user be added without using curl?
Thanks,
Tim
bradsears
06-08-2006, 07:51 PM
Hi. I'd like to be able to send the registration email after the user registers. How do I do this. Thanks in advance.
-- edit --
I answered this one myself
$activateid = build_user_activation_id($newuserid, 2, 0);
eval(fetch_email_phrases('activateaccount'));
vbmail($email, $subject, $message, true);
asphix
06-21-2006, 05:50 PM
thanks a million for this script cause I really needed it
it works like a charm
bradsears
06-21-2006, 05:53 PM
I'd really like to be able to set the cookie and log the user in after they are instantly registered. Any ideas?
scorinaldi
07-10-2006, 05:48 AM
i agree wtih bradsears. can anyone shed some light on how to automatically log in a user?
do we just set the cookies and that's it?
workRelated
07-27-2006, 12:13 AM
I recently added a field to the user profile (gender)
I also renamed location to country
I would like to be able to automatically set these fields similarly to the other fields in the above example. Im unclear as to how this would be possible.
Any help would be greatly appreciated.
djdrey
10-05-2006, 01:49 AM
How would a new user be added without using curl?
Thanks,
Tim
You don't have to use CURL to do it, but you have to include globals.php in your script root if you want to create the user from within a function or method.
You also have to remember to retrieve the global vbulletin variable to pass into the datamanager class.
I spent the last few hours working that out, hopefully it'll help someone else!
bigtime
10-05-2006, 01:52 AM
Thanks. Would you mind posting the code you used?
novastar
10-27-2006, 02:59 AM
i use a modified version of the code they gave a couple posts back which works great for me.
<?php
$username="username";
$email="email@address.com";
$password="password";
$usergroupid="2";
$timezoneoffset="-6";
define('THIS_SCRIPT', 'remote_register.php');
chdir('/home/site/public_html/forum');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', $username);
$userdm->set('email', $email);
$userdm->set('password', $password);
$userdm->set('usergroupid',$usergroupid);
$userdm->set('ipaddress', $ipaddress);
$userdm->set('timezoneoffset', $timezoneoffset);
$userdm->set_bitfield('options', 'adminemail', '1');
$userdm->set_bitfield('options', 'showemail', '1');
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
chdir('/home/site/public_html/');
?>
I would have taken more time to tinker with it, and possibilly put it in a function, but as there is only 1 place in my scripting but that works fine for me.
Im running it on vBulletin 3.6.2
XxRaidenxX
12-22-2006, 08:25 AM
Hello,
i use the code it's work fine but i have one problem. I can login the user but when i in the admincp and i edit the user i dont see any username in the inputfield! What is wrong?
Raiden
testebr
12-23-2006, 12:24 PM
Its possible verify if the usergroup exists before add to database the new user?
Exemple, to test I set the usergroup to 2000000 and VB ignore and inserted the user normally.
ps: same problem with password field, I set like empty and vbulletin inserted the data..
timedgar
02-13-2007, 12:06 AM
Hello All,
I'm using the following code, posted by Brad Sears, for sending out activation emails after adding a user via the script on this thread:
$activateid = build_user_activation_id($newuserid, 2, 0);
eval(fetch_email_phrases('activateaccount'));
vbmail($email, $subject, $message, true);
It works, sort of. The only problem is that the email does not contain the username of the user being emailed (it begins "Welcome, (blank)"). The userid in the links and the email address it sends to are correct, but no username...
Do I need to pass additional variables to these functions?
Thanks!
Tim
Ba$im
04-24-2007, 01:45 AM
i dont know how do it?
let c what i can understand
first creat vB_Datamanager_User.php file then put this code and upload to vb folder in your site
then
ask this
http://yoursite/vb/vB_Datamanager_User.php
it just registerd 1 user???
and i should change username and email again and reupload???
how it does automatically???
can any one help me how do this plz
Spandauer
04-27-2007, 04:56 PM
Hi everybody,
is it also possible to pass a simple URL to a script, which takes the variables from the URL and registers the new user? The problem is, that i dont have the possibility to send something else... the only thing i can do for my project is sending an URL... will it be possible?
Poc1984
04-30-2007, 11:09 PM
Is it possible to use this and pass in a password that is already an md5 hash?
for example:
$userdm->set('password', "5f0f8c991d3d31c63ab531916c298c65");
Ba$im
06-28-2007, 11:45 PM
plz some 1 tell me how do that?
mpage
07-04-2007, 02:42 PM
Hi everybody,
is it also possible to pass a simple URL to a script, which takes the variables from the URL and registers the new user? The problem is, that i dont have the possibility to send something else... the only thing i can do for my project is sending an URL... will it be possible?
Yuo would just have to pass the variable to the cURL or modified script above via the _GET (http://www.w3schools.com/php/php_get.asp)method . The cURL would then post this to the datamanager, Im just about to set this up myself, so Im no expert.
I will also have to use the modified method above since I cant install curl on my host.
I cant belive this isnt made easyier (for external sign ups)
You don't have to use CURL to do it, but you have to include globals.php in your script root if you want to create the user from within a function or method.
You also have to remember to retrieve the global vbulletin variable to pass into the datamanager class.
I spent the last few hours working that out, hopefully it'll help someone else!
How can you have globals.php in your script root for a 2nd host/server/url, unless its coppied over, or the registration code is also in the root of forum.
Hmm, Ill look into this!
thbertram
07-05-2007, 05:51 PM
This is making driving me batty... With the "save" line commented, no errors are found. When I uncomment it, the data gets saved, BUT the error message line executes as if the entire program reruns itself. The 2 errors generated are duplicate username and duplicate email. Anyone have any ideas?
$userdata =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$userdata->adminoverride = true;
$userdata->set('username', 'phpNukeUser');
$userdata->set('email', 'foo@bar.com');
$userdata->set('password', 'verysecret');
$userdata->set('usergroupid', 500);
$userdata->set('usertitle','Tourist');
if(count($userdata->errors))
{
echo "<b>".count($userdata->errors) . " errors </b>";
}
else
{
// $uid = $userdata->save();
echo "<br/>User " . $uid . " added.";
}
Searchworm1
07-19-2007, 12:03 AM
My God - the curl thing worked. It took me all week to find this post. Thanks.
beejeebers
07-19-2007, 05:24 PM
Novastar's script worked beautifully on the first try!
Thanks dude.
:)
mpage
07-23-2007, 08:36 PM
anyone having trouble with new users not getting a welcome post via datamanager, no idea how to make sure new users get a welcome post, there must be a way
RonInMaine
07-31-2007, 02:55 PM
When I use any variations of the scripts (with cURL and without) in this thread, I get these errors:
Notice: Undefined index: HTTPS in /var/www/html/includes/class_core.php on line 1599
Notice: Undefined index: HTTPS in /var/www/html/includes/class_core.php on line 1599
Notice: Undefined index: HTTP_REFERER in /var/www/html/includes/class_core.php on line 1626
I'm using VB 3.6.7 -- has something changed in this version that might be causing this? Is there another file I need to include to get the environment set up right?
I see where these indices are used in class_core.php, but I haven't (yet) found where they are defined. Still looking ...
Any suggestions would be appreciated.
Thanks,
Ron.
Okay, I'm not thinking straight. Of course, php sets the $_Server superglobal. SO, I guess my job is to find out why the HTTPS and HTTP_REFERER values are not being set.
Thanks,
Ron.
Marco van Herwaarden
07-31-2007, 04:28 PM
Add the following to the top of your script:
error_reporting(E_ALL & ~E_NOTICE);
RonInMaine
07-31-2007, 04:57 PM
Thank you. That worked nicely.
But, now you've got me curious. How did changing the error reporting options fix the problem?
Thanks,
Ron.
psalzmann
08-09-2007, 05:02 AM
Brilliant! Thanks Novastar!
blogtorank
08-12-2007, 06:40 AM
I've made it possible for you all to start creating members automatically here in this new hack:
https://vborg.vbsupport.ru/showthread.php?t=154637
I branched differently with all full sources of .NET and PHP using what I seen on the forums here with my .NET, and putting it all to work within XML_RPC I hope this helps others out as well.
psalzmann
08-15-2007, 02:52 AM
We are using novastar's hack as mentioned above and it's working fine. However, adding users is one thing, updating is another .. which brings me to my next question:
Will this work to actually "update" an existing user, all we're trying to do is update an existing user in the forum to a new usergroup:
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', $_POST['username']);
$userdm->set('usergroupid', "9");
$userdm->set('displaygroupid', "9");
$forumuserid = $userdm->save();
But before I execute and implement that code above, I just want to make sure this won't actually "insert/register or create" a user, I would like to just update.
Any clues? is there a $userdm->update(); instead of save? I noticed a pre_save() option and now it's got me a bit curious :)
Thanks in advance!
Okay I did some more reading.. would someone be able to verify the following code:
$forumuserid = 10;
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$existing = array(
'userid' => $forumuserid,
'usergroupid' => 9,
'usertitle' => 'Licensed Member',
'customtitle' => 1
);
$userdm->set_existing(&$existing);
$userdm->save();
TIA
blogtorank
08-15-2007, 03:22 AM
We are using novastar's hack as mentioned above and it's working fine. However, adding users is one thing, updating is another .. which brings me to my next question:
Not off hand I don't think there is anything that can make it update without modifying the code to make it UPDATE, unless you make the set work as an update within a sql statement inside your PHP code....
taras
09-06-2007, 02:06 AM
Hey novastar
How do you pass varibles from another DB?
we tryed:
session_start();
//connections whith DataBase
$str=file("config.php");
$k = str_replace("hostName=", "", $str[0]); $k = rtrim($k);
$o = str_replace("userName=", "", $str[1]); $o = rtrim($o);
$d = str_replace("password=", "", $str[2]); $d = rtrim($d);
$db = str_replace("datebase=", "", $str[3]); $db = rtrim($db);
$DB = mysql_connect($k,$o,$d);
mysql_select_db($db,$DB);
$id =$_GET['id'];
$active =$_GET['active'];
$checkA = mysql_query("select active,userName,email,userPass from tusers where userID = ".$id, $DB);
$checkA = mysql_result($checkA,0,'active');
if($checkA == $active)
{
$checkA = mysql_query("UPDATE tusers SET active = '' where userID = ".$id, $DB);
session_register('userIDD');
$_SESSION['userIDD'] = $id;
setcookie("userIDD", $id);
$username=mysql_result($checkA,0,'userName');
$email=mysql_result($checkA,0,'email');
$password=mysql_result($checkA,0,'userPass');
virtual("file_with_your_code.php");
$redirect = "<META HTTP-EQUIV='Refresh' CONTENT='0; URL=somefile.php'>\n";
}
else
{$redirect = "";}
But it's not working...
i use a modified version of the code they gave a couple posts back which works great for me.
<?php
$username="username";
$email="email@address.com";
$password="password";
$usergroupid="2";
$timezoneoffset="-6";
define('THIS_SCRIPT', 'remote_register.php');
chdir('/home/site/public_html/forum');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', $username);
$userdm->set('email', $email);
$userdm->set('password', $password);
$userdm->set('usergroupid',$usergroupid);
$userdm->set('ipaddress', $ipaddress);
$userdm->set('timezoneoffset', $timezoneoffset);
$userdm->set_bitfield('options', 'adminemail', '1');
$userdm->set_bitfield('options', 'showemail', '1');
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
chdir('/home/site/public_html/');
?>
I would have taken more time to tinker with it, and possibilly put it in a function, but as there is only 1 place in my scripting but that works fine for me.
Im running it on vBulletin 3.6.2
skattabrain
10-08-2007, 02:33 PM
novastar ... added user without trouble, thanks!
any ideas on how to add the custom field data?
amatulic
10-13-2007, 04:16 AM
After much testing and examining vBulletin code, I finally finished my PHP class for performing basic operations on user accounts (create user, modify user, delete user, log on, log off). This has enabled me to integrate the forum into my site. Users who log in to my site are logged in to the forum, users who register on my site automatically get an account on the forum, etc.
Once that was done, I just had to modify all the vBulletin templates that contained a login form, logout link, register link, or user account modification link, and make sure those things use MY code for those functions. Now users can log in either from the forum or from my main site, and user account registration and modification are all handled on my main site, outside of the forum. It all works pretty well, without modifying a single line of the vBulletin source code.
Here is the code for class.forumops.php, with extensive usage comments:
<?php
//================================================== ============
// class ForumOps - intended to be used with vBulletin 3.7.2
// by Alex Matulich, June 2008, Unicorn Research Corporation
//
// Setup:
// ------
//
// 1. First, make sure FORUMPATH is defined properly below.
//
// 2. Next, make sure the function userdata_convert correctly converts
// an array of your own user data to an array of vBulletin user data.
// Minimally, you need to convert your data to an array containing
// the keys 'username', 'password', and 'email'. If your data array
// already contains these keys, simply have userdata_convert return
// the original array, otherwise translate your array to a vBulletin
// array having those keys.
//
// Usage:
// ------
//
// At the top of your php modules where you need to perform vBulletin
// user operations (creation, deletion, updating, login, and logout),
// put these two lines (where MY_PATH is the path to this file):
//
// require_once(MY_PATH.'/class.forumops.php');
// $forum = new ForumOps();
//
// Now get your user data array from $_POST or whatever. Let's call
// this array $userdata. Here's what you can do:
//
// CREATE AND REGISTER NEW USER:
//
// $errmsg = $forum->register_newuser($userdata);
//
// UPDATE EXISTING USER DATA:
//
// $errmsg = $forum->update_user($userdata);
//
// (In this case, $userdata need contain only the username and anything
// else you wish to update, such as password and/or email address.)
//
// $errmsg contains any error messages separated by <br> codes.
// If no errors occured then NULL is returned.
//
// DELETE USER:
//
// $forum->delete_user($username); // $username = user name
//
// LOGIN USER TO THE FORUM:
//
// $forum->login( // requires array to be passed
// array('username' => $username, 'password' => $pw);
//
// LOG OFF USER FROM THE FORUM:
//
// $forum->logout();
//
// WARNING: It is common for you to have TABLE_PREFIX defined for
// your own database. You must call it something else (for example,
// remove the underscore) or it will conflict with the vBulletin
// definition of the same name.
//================================================== =============
//================================================== =============
// Change this definition and the userdata_convert() function
// to suit your needs:
define('FORUMPATH', '/home/my_website_path/forum'); // path to your forum
function userdata_convert(&$userdata) // internal function
{
// $userdata is our array that contains user data from our own
// user database, which we must convert to the vBulletin values.
// Minimally, it must contain the username, email and/or password.
// required fields
$vbuser = array( 'username' => $userdata['userid'] );
if (isset($userdata['email']))
$vbuser['email'] = $userdata['email'];
if (isset($userdata['password']))
$vbuser['password'] = $userdata['password'];
// extra stuff, expand as desired
if ($userdata['birthdate'])
$vbuser['birthday_search'] = date('Y-m-d', $userdata['birthdate']);
return $vbuser;
}
// end of configuration stuff
//================================================== =============
define('REGISTERED_USERGROUP', 2); // typical default for registered users
define('PERMANENT_COOKIE', false); // false=session cookies (recommended)
define('THIS_SCRIPT', __FILE__);
$cwd = getcwd();
chdir(FORUMPATH);
require_once('./includes/init.php'); // includes class_core.php
require_once('./includes/class_dm.php'); // for class_dm_user.php
require_once('./includes/class_dm_user.php'); // for user functions
require_once('./includes/functions.php'); // vbsetcookie etc.
require_once('./includes/functions_login.php'); // process login/logout
//---------------------------------------------------------------------
// This function duplicates the functionality of fetch_userinfo(),
// using the user name instead of numeric ID as the argument.
// See comments in includes/functions.php for documentation.
//---------------------------------------------------------------------
function fetch_userinfo_from_username(&$username, $option=0, $languageid=0)
{
global $vbulletin;
$useridq = $vbulletin->db->query_first_slave("SELECT userid FROM "
. TABLE_PREFIX . "user WHERE username='{$username}'");
if (!$useridq) return $useridq;
$userid = $useridq['userid'];
return fetch_userinfo($userid, $option, $languageid);
}
//---------------------------------------------------------------------
// CLASS ForumOps
//---------------------------------------------------------------------
class ForumOps extends vB_DataManager_User {
var $userdm;
function ForumOps() // constructor
{
global $vbulletin;
$this->userdm =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
}
//======== USER REGISTRATION / UPDATE / DELETE ========
function register_newuser(&$userdata, $login = true)
{
global $vbulletin;
$vbuser = userdata_convert($userdata);
foreach($vbuser as $key => $value)
$this->userdm->set($key, $value);
$this->userdm->set('usergroupid', REGISTERED_USERGROUP);
// Bitfields; set to desired defaults.
// Comment out those you have set as defaults
// in the vBuleltin admin control panel
$this->userdm->set_bitfield('options', 'adminemail', 1);
$this->userdm->set_bitfield('options', 'showsignatures', 1);
$this->userdm->set_bitfield('options', 'showavatars', 1);
$this->userdm->set_bitfield('options', 'showimages', 1);
$this->userdm->set_bitfield('options', 'showemail', 0);
if ($login) $this->login($vbuser);
//$this->userdm->errors contains error messages
if (empty($this->userdm->errors))
$vbulletin->userinfo['userid'] = $this->userdm->save();
else
return implode('<br>', $this->userdm->errors);
return NULL;
}
function update_user(&$userdata)
{
global $vbulletin;
$vbuser = userdata_convert($userdata);
if (!($existing_user = fetch_userinfo_from_username($vbuser['username'])))
return 'fetch_userinfo_from_username() failed.';
$this->userdm->set_existing($existing_user);
foreach($vbuser as $key => $value)
$this->userdm->set($key, $value);
// reset password cookie in case password changed
if (isset($vbuser['password']))
vbsetcookie('password',
md5($vbulletin->userinfo['password'].COOKIE_SALT),
PERMANENT_COOKIE, true, true);
if (count($this->userdm->errors))
return implode('<br>', $this->userdm->errors);
$vbulletin->userinfo['userid'] = $this->userdm->save();
return NULL;
}
function delete_user(&$username)
{
// The vBulletin documentation suggests using userdm->delete()
// to delete a user, but upon examining the code, this doesn't
// delete everything associated with the user. The following
// is adapted from admincp/user.php instead.
// NOTE: THIS MAY REQUIRE MAINTENANCE WITH NEW VBULLETIN UPDATES.
global $vbulletin;
$db = &$vbulletin->db;
$userdata = $db->query_first_slave("SELECT userid FROM "
. TABLE_PREFIX . "user WHERE username='{$username}'");
$userid = $userdata['userid'];
if ($userid) {
// from admincp/user.php 'do prune users (step 1)'
// delete subscribed forums
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "subscribeforum WHERE userid={$userid}");
// delete subscribed threads
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "subscribethread WHERE userid={$userid}");
// delete events
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "event WHERE userid={$userid}");
// delete event reminders
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "subscribeevent WHERE userid={$userid}");
// delete custom avatars
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "customavatar WHERE userid={$userid}");
$customavatars = $db->query_read("SELECT userid, avatarrevision FROM "
. TABLE_PREFIX . "user WHERE userid={$userid}");
while ($customavatar = $db->fetch_array($customavatars)) {
@unlink($vbulletin->options['avatarpath'] . "/avatar{$customavatar['userid']}_{$customavatar['avatarrevision']}.gif");
}
// delete custom profile pics
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "customprofilepic WHERE userid={$userid}");
$customprofilepics = $db->query_read(
"SELECT userid, profilepicrevision FROM "
. TABLE_PREFIX . "user WHERE userid={$userid}");
while ($customprofilepic = $db->fetch_array($customprofilepics)) {
@unlink($vbulletin->options['profilepicpath'] . "/profilepic$customprofilepic[userid]_$customprofilepic[profilepicrevision].gif");
}
// delete user forum access
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "access WHERE userid={$userid}");
// delete moderator
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "moderator WHERE userid={$userid}");
// delete private messages
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "pm WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "pmreceipt WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "session WHERE userid={$userid}");
// delete user group join requests
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "usergrouprequest WHERE userid={$userid}");
// delete bans
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "userban WHERE userid={$userid}");
// delete user notes
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "usernote WHERE userid={$userid}");
// from admincp/users.php 'do prune users (step 2)'
// update deleted user's posts with userid=0
$db->query_write("UPDATE " . TABLE_PREFIX
. "thread SET postuserid = 0, postusername = '"
. $db->escape_string($username)
. "' WHERE postuserid = $userid");
$db->query_write("UPDATE " . TABLE_PREFIX
. "post SET userid = 0, username = '"
. $db->escape_string($username)
. "' WHERE userid = $userid");
// finally, delete the user
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "usertextfield WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "userfield WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "user WHERE userid={$userid}");
}
/*
the following is suggested in the documentation but doesn't work:
$existing_user = fetch_userinfo_from_username($username);
$this->userdm->set_existing($existing_user);
return $this->userdm->delete();
*/
}
// ======== USER LOGIN / LOGOUT ========
function login($vbuser)
{
global $vbulletin;
$vbulletin->userinfo = fetch_userinfo_from_username($vbuser['username']);
// update password expire time to
// to prevent vBulletin from expiring the password
$this->userdm->set_existing($vbulletin->userinfo);
$this->userdm->set('passworddate', 'FROM_UNIXTIME('.TIMENOW.')', false);
$this->userdm->save();
// set cookies
vbsetcookie('userid', $vbulletin->userinfo['userid'],
PERMANENT_COOKIE, true, true);
vbsetcookie('password',
md5($vbulletin->userinfo['password'].COOKIE_SALT),
PERMANENT_COOKIE, true, true);
// create session stuff
process_new_login('', 1, '');
}
function logout()
{
process_logout(); // unsets all cookies and session data
}
} // end class ForumOps
chdir($cwd);
?>
As you can see, most of the operations above are pretty simple, except for the user deletion function. Also, to update user account information, see the first post of this thread for options you can use.
The wordwrapping above looks funny, but if you quote this message as if to reply, the wordwrapping will be correct when you copy and paste it.
I hope this helps some people.
-Alex
Lordy
10-14-2007, 07:47 PM
When using your code (amatulic), I get
Fatal error: Call to a member function query_first() on a non-object in /home/lordy/domains/animefill.com/public_html/project/forum/includes/class_dm_user.php on line 380
I'm passing the variables this way
$userdata['userid']=$_POST['uname'];
$userdata['password']=$_POST['password'];
$userdata['email']=$_POST['email'];
$errmsg=$forum->register_newuser($userdata);
line 380 is
else if (htmlspecialchars_uni($username_raw) != $this->existing['username'] AND $user = $this->dbobject->query_first("
amatulic
10-15-2007, 02:20 AM
When using your code (amatulic), I get "Fatal error: Call to a member function query_first() on a non-object in /home/lordy/domains/animefill.com/public_html/project/forum/includes/class_dm_user.php on line 380"
Odd. It's working for me. Try this hard-coded example, in the same directory where you have class.forumops.php. You can run it from the commandline:
<?php
require_once('class.forumops.php');
$userdata = array(
'userid' => 'test_user',
'password' => 'my_password',
'email' => 'test_user@example.com' );
$forum = new ForumOps();
$errmsg = $forum->register_newuser($userdata);
if ($errmsg) echo $errmsg;
else echo "User test_user created successfully.<br>\n";
?>
You can go to the admin control panel "Prune / Move Users" and verify the user account 'test_user' got created. I just did a diff of what I posted vs what I have, and the only difference I see is that I am now passing the username by reference to delete_user(). That shouldn't make any difference. I'll update my source in my previous message anyway.
-Alex
Lordy
10-17-2007, 08:16 PM
Yup, seems that that does work. Can't seem to figure out how to do.
I tried putting
require_once('class.forumops.php');
$forum=new ForumOps(); in my config file, and just including it. I think i'll probably have to code around that as it seems its setting some issues
I'll have to debug this on my end it seems.
I think I may have figured it out.
thanks =) I'll post back when I have a definite answer.
Lordy
10-19-2007, 12:26 AM
Recoded my reg form and it works fine now. Can't seem to work out the login form, so I looked at your login script.
// ======== USER LOGIN / LOGOUT ========
function login($vbuser)
{
global $vbulletin;
$vbulletin->userinfo = fetch_userinfo_from_username($vbuser['username']);
// set cookies
vbsetcookie('userid', $vbulletin->userinfo['userid'],
PERMANENT_COOKIE, true, true);
vbsetcookie('password',
md5($vbulletin->userinfo['password'].COOKIE_SALT),
PERMANENT_COOKIE, true, true);
// create session stuff
process_new_login('', 1, '');
}
which i'm assuming is that? if so, passing as $forum->login($userdata) is not working for me, but looking through your code, I also don't know if that does work.
A58676333470
10-20-2007, 12:06 AM
Weee! EXACTLY what im looking for @amatulic ! Works Perfect! Thx!
SolidSlug
11-24-2007, 05:32 AM
amatulic,
Your code works great from a PHP page that has no other includes, but as soon as I plugged it into my own CMS, I got the dreaded:
PHP Fatal error: Call to a member function query_first_slave() on a non-object in /var/www/html/papatangopapa.com/forums/includes/functions.php on line 1194
My CMS has its own session management stuff and also uses a custom __autoload function, I wonder if that breaks things in some weird way.
--------------- Added 1195925781 at 1195925781 ---------------
I think it's due to vBulletin's insane reliance on global variables.
When you have:
A.php including init.php and functions.php directly,
there is no problem.
When you have:
a function in B.php including including C.PHP, which includes init.php and functions.php,
you get:
PHP Fatal error: Call to a member function query_first_slave() on a non-object in /var/www/html/papatangopapa.com/forums/includes/functions.php on line 1194
--------------- Added 1195926210 at 1195926210 ---------------
That's also how and why you might end up using cURL in order to keep your application and the namespace polluting vBulletin back-end completely separate.
stoppy
11-25-2007, 09:24 PM
Hi!
I'm using 3.6.8 version, I'm trying to add user to vb using my own registration system.
The constructor of the class I have take 2 parameters in input
function vB_DataManager_User(&$registry, $errtype = ERRTYPE_STANDARD)
How I have to use it?
May I include directly this class in my code... it look like not... How can I do?
I proposed another way to solve this problem here: https://vborg.vbsupport.ru/showthread.php?p=1389327#post1389327
Thanks
Moooooon
12-01-2007, 08:55 PM
Would this approach still work in 3.6.8?
following code place earlier plus example of code for the curl call in php
STEP I
this file need to to be placed in the forum directory of vbulletin
(make sure it is in this directory to initialise vbulletin stuff ......)
no change done from previous poster
you can include the code below in one php page. call it whatever you want
i call it great_stuff_dude.php
thus i need to MAKE sure that the name of the page is correctly entered
in the define below
define('THIS_SCRIPT', 'GREAT_STUFF_DUDE.php');
do the same in the code below
----------------------------------------------------------------------
<?php
# Add a user to vBulletin (offline)
function qpc_post($varname)
{
return trim(stripslashes((get_magic_quotes_gpc()) ? $_POST[$varname] : addslashes($_POST[$varname])));
}
define('THIS_SCRIPT', 'GREAT_STUFF_DUDE.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', qpc_post('username'));
$userdm->set('email', qpc_post('email'));
$userdm->set('password', qpc_post('password'));
$userdm->set('usergroupid',qpc_post('usergroupid'));
$userdm->set('ipaddress', qpc_post('ipaddress'));
$userdm->set('referrerid', qpc_post('referrername'));
$userdm->set('timezoneoffset', qpc_post('timezoneoffset'));
$userdm->set_bitfield('options', 'adminemail', intval(qpc_post('adminemail')));
$userdm->set_bitfield('options', 'showemail', intval(qpc_post('showemail')));
$dst_setting = intval(qpc_post('dst'));
switch ($dst_setting)
{
case 0:
case 1:
$userdm->set_bitfield('options', 'dstonoff', $dst_setting);
break;
case 2:
$userdm->set_bitfield('options', 'dstauto', 1);
break;
}
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
?>
-------------------------------------------------------------------
STEP II
You can have the following code on server running PHP WHEREVER YOU WANT. it does not need to be on the same domain as long as you have the curl compiled
in that script (again call it whatever you want it does not matter)
you call the url of your web server and path to go to the page GREAT_STUFF_DUDE.php
you can of course include it in the login code of your CMS to create profiles in both systems in one step.
-------------------------------------------------------------------
<?php
$url="http://www.mysite.com/vbulletin3000/GREAT_STUFF_DUDE.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "username=keith_mayass&email=keith_mayass@no_worrys.com&password=up_yours&usergroupid=2&");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$store = curl_exec ($ch);
$content = curl_exec ($ch); # This returns HTML
curl_close ($ch);
?>
---------------------------------------------------------
you can of course pass as may variables as you want if you have them available in your CMS to complete the profile.
like
parentemail
showbirthday
homepage
icq
aim
yahoo
msn
skype
usertitle
customtitle
birthday
__-----__________------___
Ni vu ni connu, jt' embrouille
makouvlei
12-06-2007, 07:59 PM
I've managed to automatically add users to vBulletin via our website which is done in ASP. The only issue I'm having is that a user cannot 'SAVE' their signature (strange). Everything else works great...
Anyone have any ideas why?
Thanks.
I am looking to implement a similar system managing vBulletin users from an asp site. I'm very comfortable with asp, but not at all with php -- any pointers as to how to (and how not to) approach this would be much appreciated.
jazeera
12-10-2007, 11:39 AM
following code place earlier plus example of code for the curl call in php
STEP I
this file need to to be placed in the forum directory of vbulletin
(make sure it is in this directory to initialise vbulletin stuff ......)
no change done from previous poster
you can include the code below in one php page. call it whatever you want
i call it great_stuff_dude.php
thus i need to MAKE sure that the name of the page is correctly entered
in the define below
define('THIS_SCRIPT', 'GREAT_STUFF_DUDE.php');
do the same in the code below
----------------------------------------------------------------------
<?php
# Add a user to vBulletin (offline)
function qpc_post($varname)
{
return trim(stripslashes((get_magic_quotes_gpc()) ? $_POST[$varname] : addslashes($_POST[$varname])));
}
define('THIS_SCRIPT', 'GREAT_STUFF_DUDE.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', qpc_post('username'));
$userdm->set('email', qpc_post('email'));
$userdm->set('password', qpc_post('password'));
$userdm->set('usergroupid',qpc_post('usergroupid'));
$userdm->set('ipaddress', qpc_post('ipaddress'));
$userdm->set('referrerid', qpc_post('referrername'));
$userdm->set('timezoneoffset', qpc_post('timezoneoffset'));
$userdm->set_bitfield('options', 'adminemail', intval(qpc_post('adminemail')));
$userdm->set_bitfield('options', 'showemail', intval(qpc_post('showemail')));
$dst_setting = intval(qpc_post('dst'));
switch ($dst_setting)
{
case 0:
case 1:
$userdm->set_bitfield('options', 'dstonoff', $dst_setting);
break;
case 2:
$userdm->set_bitfield('options', 'dstauto', 1);
break;
}
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
?>
-------------------------------------------------------------------
STEP II
You can have the following code on server running PHP WHEREVER YOU WANT. it does not need to be on the same domain as long as you have the curl compiled
in that script (again call it whatever you want it does not matter)
you call the url of your web server and path to go to the page GREAT_STUFF_DUDE.php
you can of course include it in the login code of your CMS to create profiles in both systems in one step.
-------------------------------------------------------------------
<?php
$url="http://www.mysite.com/vbulletin3000/GREAT_STUFF_DUDE.php";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "username=keith_mayass&email=keith_mayass@no_worrys.com&password=up_yours&usergroupid=2&");
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$store = curl_exec ($ch);
$content = curl_exec ($ch); # This returns HTML
curl_close ($ch);
?>
---------------------------------------------------------
you can of course pass as may variables as you want if you have them available in your CMS to complete the profile.
like
parentemail
showbirthday
homepage
icq
aim
yahoo
msn
skype
usertitle
customtitle
birthday
__-----__________------___
Ni vu ni connu, jt' embrouille
This code is work properly
then i need to activate this user when his account on my site activated
--------------- Added 1197356952 at 1197356952 ---------------
Would this approach still work in 3.6.8?
it works properly i'm using 3.6.8
TheNewWebGuy
12-18-2007, 12:53 PM
I hope this helps some people.
-Alex
I've been trying to get your code working, but I keep getting the error
Fatal error: Registry object is not an object in /includes/class_dm.php on line 177
And that's from just having
require_once ($_SERVER['DOCUMENT_ROOT'] . "/include/class.forumops.php");
$forum = new ForumOps();
I can't see anything that would be amiss so any help would be welcomed
Thanks
--------------- Added 1197991803 at 1197991803 ---------------
Fatal error: Registry object is not an object in /includes/class_dm.php on line 177
I was able to fix this by doing te following
require_once ($_SERVER['DOCUMENT_ROOT'] . "/include/class.forumops.php");
$forum = new ForumOps( $vbulletin );
function __construct( &$vbulletin ) // constructor
{
$this->vbulletin =& $vbulletin;
$this->userdm =& datamanager_init('user', $vbulletin, ERRTYPE_ARRAY);
}
Stiil though, I'm not sure why I can see $vbulliten outside of the class yet not inside it
dionsis
01-10-2008, 04:43 PM
Ok can anyone including the developers out there suggest a method for solving
PHP Fatal error: Call to a member function query_first_slave() on a non-object in /path/to/my/forum/includes/functions.php on line 1194
from doing a bit of research it seems this error comes up mostly when a file X.php included file Y.PHP and Y.PHP would include the code for adding a user and in turn would include the globals.php, class_dm.php and class_dm_user.php
so it seems nested including is a problem for objects further down the line
has anyone got any idea's of how we can solve this issue as i'd like to make use of the datamanager for inserting users rather than the silly method of SQL inserting which isnt the best method going
Opserty
01-11-2008, 01:35 PM
Ok can anyone including the developers out there suggest a method for solving
PHP Fatal error: Call to a member function query_first_slave() on a non-object in /path/to/my/forum/includes/functions.php on line 1194
from doing a bit of research it seems this error comes up mostly when a file X.php included file Y.PHP and Y.PHP would include the code for adding a user and in turn would include the globals.php, class_dm.php and class_dm_user.php
Make sure you include global.php (not globals.php) at the very top of your script, the advised method of doing so is with a chdir().
// Start of script
$cwd = getcwd();
chdir('path/to/your/forums');
require_once('global.php');
// Place any other vBulletin files you need to include here.
// datamanger_init....possibly?
chdir($cwd);
// Include your extra files here
Try it out.
dionsis
01-14-2008, 12:32 AM
i do include global.php
$cwd = getcwd();
chdir('/home/content/d/i/o/dionsis/html/acuffe/test/forum');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
chdir($cwd);
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', $username);
$userdm->set('email', $email);
$userdm->set('password', $password);
$userdm->set('usergroupid',$usergroupid);
//$userdm->set('ipaddress', $ipaddress);
$userdm->set('timezoneoffset', $timezoneoffset);
$userdm->set_bitfield('options', 'adminemail', '1');
$userdm->set_bitfield('options', 'showemail', '1');
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors))
{
for($i=0; $i<count($userdm->errors); $i++)
{
print "ERROR{$i}:{$userdm->errors[$i]}\n";
return(false);
}
}
else
{
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
return(true);
}
dionsis
01-24-2008, 12:08 PM
Nobody have any idea's on this? i might post this to the vbulletin programming forum and see if anyone see's it better there
scoopr
02-01-2008, 12:26 PM
I was pleased to find amatulic's class.forumops.php as that was exactly what I needed, excellent work!
However, I found the user login part of it acting a bit weird.
function login($vbuser)
{
global $vbulletin;
$vbulletin->userinfo = fetch_userinfo_from_username($vbuser['username']);
// set cookies
vbsetcookie('userid', $vbulletin->userinfo['userid'],
PERMANENT_COOKIE, true, true);
vbsetcookie('password',
md5($vbulletin->userinfo['password'].COOKIE_SALT),
PERMANENT_COOKIE, true, true);
// create session stuff
process_new_login('', 1, '');
}
If you look at the function, it does not use the $vbuser['password'] value at any point! This means, if you use this login function in some page, it logs in successfully any user no matter what she supplied as her password!
You might need forcing successful login when you have custom user database you check against yourself and want to ignore vbulletin user database and still be logged in to vbulletin, but in my eyes, the class implied it actually checked against the vb user database (the comments have an example where it supplied the password).
I replaced the login method as follows, now it returns true when the login is successfully, false otherwise. I'm not totally sure if the md5 passwords are totally correct here, but seem to work in my quick test.
function login($vbuser)
{
return verify_authentication($vbuser['username'],
$vbuser['password'],
md5(htmlentities($vbuser['password'], ENT_NOQUOTES, "UTF-8")),
md5($vbuser['password']),
1, true);
}
Feel free to comment if I had misunderstood something, but I felt it would be important bring this issue up, if someone else uses this class as a login method assuming the same thing as I did.
Oh, and this skips the userdata conversion part, as I felt it was a bit pointless in this context.
Iron Guard
02-11-2008, 08:32 AM
I have found the datamanager_user class (class_dm_user.php) in the includes folder of the vbulletin directory on my server.
Now could anybody please suggest me what files do I need to include in my script before I could instantiate the datamanager object and run the add process successfully?
1. What files do I need to include in my script to create a database connection?
2. Any function files that I need to include to run the process successfully?
3. Any other class file that is related with this class_dm_user.php file and required to be included as well?
Thanks.
WebConnection
02-14-2008, 06:10 AM
Is there any tables may be affected when adding a new user except for the 'user' table? If so, what are they?
matzelkoenig
03-25-2008, 04:55 PM
I am using your functions in my project and it worked very well! But now I want to add also an customavatar picture for new users. How can I do this with your ForumOps Code?
upnorth
04-01-2008, 01:04 PM
Can anyone tell me where there might be a complete updated list of what can be set for a new user in vB 3.6.9 Seems the list provided in the initial post (see below) is a little dated.
...
You can also set many other info too:
membergroupids = comma-separated string of all additional usergroups (Default=Empty)
displaygroupid = ID of the usergroup this user should show up as (Default=0)
Note that this must be set after usergroupid and membergroupids!
styleid = ID of the Style to be used by this user (Default=Board Default)
languageid = ID of the language to be used by this user (Default=Board Default)
threadedmode = Whether to use Flat (0), Hybrid (1) or Threaded (2) Display Mode
maxposts = Integer, how many posts should be shown on one Page (Default=Board Default)
ipaddress = String, IP-Adress of the User registering (Default=Empty)
refererid = String, Username or UserID of the User this user was refered by
parentemail = String. eMail-Address of the users Parents
daysprune = Integer, show threads from the last X days
startofweek = Integer, When does the week start (1=Sunday, 2=;onday, ...) (Default=Board Default)
timezoneoffset = Integer, spexifying the Timezone (-12 .. +12)
autosubscribe = Integer, defining default mode for Thread subscription
-1 = no Subscription, 1 = Instant, 2 = Daily Digest, 3 = Weekly Digest
(Default=Board Default)
homepage = String, URL of the users Homepage (Default=Empty)
icq = String, the Users ICQ # (Default=Empty)
aim = String, the Users AIM ID (Default=Empty)
yahoo = String, the Users Yahoo ID (Default=Empty)
MSN = String, the Users MSN ID (Default=Empty)
usertitle = String, the Usertitle this user should have
customtitle = Integer, defining behaviour of Usertitle. 0=No Custom Title, 1=Custom, Title with HTML, 2=Custom Title without HTML (Default=
birthday = array(month, day, year). The users birthdate.
avatarid = Integer, ID of the Avatar being used for this user
signature = String. The Users Signature
subfolders = Array. The Users Subscription Folders
pmfolders = Array. The Users Subscription Folders
buddylist = String. Space separated List of UserIDs defining the Users buddylist
ignorelist = String. Space separated List of UserIDs defining the Users ignorelist
...
showsignatures = Show Signatures
showavatars = Show Avatars
showimages = Show Images, incl. attached Images and [img] BBCode
If this is not set they will show up as links
coppauser = User is COPPA User
adminemail = Receive Admin eMails
showvcard = Allow vCard Download
dstauto = Automatically detect DST setting
dstonoff = DST turned On
showemail = Receive eMails from other Users
invisible = Be invisible
showreputation = Show Reputation
receivepm = PM turned on
emailonpm = eMail notification for new PMs
....
Opserty
04-02-2008, 08:14 AM
Can anyone tell me where there might be a complete updated list of what can be set for a new user in vB 3.6.9 Seems the list provided in the initial post (see below) is a little dated.
I don't think there have be many changes, maybe just ask about a specific field either in this thread of one of the other vBulletin.org forums.
upnorth
04-02-2008, 02:49 PM
The ones I seem to be running into problems with are the ones below:
$newuser->set_bitfield('options', 'receivepm', '1');
--this dosn't seem to set the "Receive Private Messages" for the user to "Yes"
$newuser->set_bitfield('options', 'emailonpm', '1');
--this dosn't seem to set the "Send Notification Email When a Private Message is Received" for the user to "Yes"
Pop up a Notification Box When a Private Message is Received
--not sure what the option is to set this one?
Opserty
04-02-2008, 03:59 PM
Try:
$newuser->set_bitfield('options', 'receivepm', true);
Does that work?
upnorth
04-02-2008, 04:19 PM
nope, didn't work
JulienT
04-13-2008, 06:13 PM
This was a really good code that helped me integrate VB with my existing website.
Any idea if those functions will still work in 6.7?
I will wait for the final release of course of 6.7, but having this code working is a key factor for me to upgrade or not.
So if someone has tried this code on 6.7, please let us know.
Thanks.
binevi
04-13-2008, 10:03 PM
Can anyone explain step by step? How and where do we suppose to put these codes ;(
upnorth
04-24-2008, 05:28 PM
Still running into problems with these as well as showimages
Anyone? Anyone lol :D
The ones I seem to be running into problems with are the ones below:
$newuser->set_bitfield('options', 'receivepm', '1');
--this dosn't seem to set the "Receive Private Messages" for the user to "Yes"
$newuser->set_bitfield('options', 'emailonpm', '1');
--this dosn't seem to set the "Send Notification Email When a Private Message is Received" for the user to "Yes"
Pop up a Notification Box When a Private Message is Received
--not sure what the option is to set this one?
coffeesgr
05-25-2008, 10:20 AM
Anyone know how to fix error:
Fatal error: Registry object is not an object in [path]/includes/class_dm.php on line 177
#0 vb_error_handler(256, Registry object is not an object, /home/gymchat/public_html/messageboards/includes/class_dm.php, 177, Array ([this] => vB_DataManager_User Object ([validfields]
i use a modified version of the code they gave a couple posts back which works great for me.
<?php
$username="username";
$email="email@address.com";
$password="password";
$usergroupid="2";
$timezoneoffset="-6";
define('THIS_SCRIPT', 'remote_register.php');
chdir('/home/site/public_html/forum');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', $username);
$userdm->set('email', $email);
$userdm->set('password', $password);
$userdm->set('usergroupid',$usergroupid);
$userdm->set('ipaddress', $ipaddress);
$userdm->set('timezoneoffset', $timezoneoffset);
$userdm->set_bitfield('options', 'adminemail', '1');
$userdm->set_bitfield('options', 'showemail', '1');
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
chdir('/home/site/public_html/');
?>
I would have taken more time to tinker with it, and possibilly put it in a function, but as there is only 1 place in my scripting but that works fine for me.
Im running it on vBulletin 3.6.2
grenma
05-28-2008, 12:02 AM
This is the only auto-login/auto-register/integration information in all of support as far as I can tell. It is 3 years old and, while giving thanks to the author and noting that it is better than nothing, it hardly classifies as much more than a code snippet. I've seen dozens of posts on integration here that could be addressed by expanding and updating this information- surely it is not too much to ask?
--------------- Added 1211943709 at 1211943709 ---------------
Thank You!
--------------- Added 1211943812 at 1211943812 ---------------
Anyone know how to fix error:
This did the trick for me
--------------- Added 1211943912 at 1211943912 ---------------
changing to the vb install directory is the key
coffeesgr
05-28-2008, 03:25 AM
What fixed the error for you?
This does change to the vb directory:
chdir('/home/site/public_html/forum');
wassimeh
06-10-2008, 02:35 PM
Thanks coffeesgr your code works #1 when executed directly; unfortunately it won't work when i use it inside a $_POST action.. please help.. what am I doing wrong ? here's my code below
<?php
//Ajouter l'utilisateur dans la database du forum
if(isset($_POST['btn_update'])){
/*
$username=$_POST['username'];
$email=$_POST['email'];
$password=$_POST['password'];
$usergroupid=$_POST['usergroupid'];
$timezoneoffset="-5";
*/
$username="username";
$email="email@address.com";
$password="password";
$usergroupid="2";
$timezoneoffset="-5";
define('THIS_SCRIPT', 'remote_register.php');
chdir('forum/');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', $username);
$userdm->set('email', $email);
$userdm->set('password', $password);
$userdm->set('usergroupid',$usergroupid);
$userdm->set('ipaddress', $ipaddress);
$userdm->set('timezoneoffset', $timezoneoffset);
$userdm->set_bitfield('options', 'adminemail', '1');
$userdm->set_bitfield('options', 'showemail', '1');
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
}
else{
# If everything is OK
$newuserid = $userdm->save();
}
chdir('..');
}
?>
<form name='f_updaccess' method='post' action='test.php'>
username : <input type='textarea' name='username' value='user2'>
email : <input type='textarea' name='email' value='email@haha.ca'>
pass : <input type='textarea' name='password' value='password'>
usergroup : <input type='textarea' name='usergroupid' value='9'>
<input type='submit' name='btn_update'>
</form>
nautiboy
06-14-2008, 01:15 AM
I know this question was asked earlier, but it was never answered.
Is there any way to handle the case where the password you have is an md5 hash? I don't like sending passwords in the clear, so my login pages do the md5 hash before sending up to the server, so I don't have access to the actual password.
Any ideas?
--------------- Added 1213414760 at 1213414760 ---------------
OK, I've managed to answer my own question. It turns out that you can use md5's also. If you pass in a plain-text, it will md5 it. But if you pass in an md5, it will use it as-is (basically it just checks to see if the password is 32 characters long - if it is, it assumes it's an md5).
So it "just works". Cool! :up:
scoutz
06-26-2008, 07:23 AM
I don't know if this has been covered yet but if you would like to show the username and userid in your activation mail you just have to set $username and $userid to the appropriate values.
ram94401
07-08-2008, 03:59 AM
Hi. I'd like to be able to send the registration email after the user registers. How do I do this. Thanks in advance.
-- edit --
I answered this one myself
$activateid = build_user_activation_id($newuserid, 2, 0);
eval(fetch_email_phrases('activateaccount'));
vbmail($email, $subject, $message, true);
Thanks. But, when you do $userdm->save, won't the user is automatically activated? I assume that you used the code in https://vborg.vbsupport.ru/showpost.php?p=864803&postcount=31;
--------------- Added 1215493772 at 1215493772 ---------------
All right. This entire integration thing works partially for me. After getting frustrated, I wrote the program to get the user data from the form and update the Vbulletin tables directly.
Here is the logical flow:
1. I updated user and useractivation tables with the user information. I set the usergroupid as "3" (users waiting for email activation group) in user table and added the row for the new user in useractivation table. This row will be deleted when the user activates the account.
2. I sent the activation email to the user. This is a nice thing, because I can customize the email format. If a user registers in the main site and the forum sends the activation email, it looks kind of weird. Because some users of our CMS site don't even know what is a forum.
3. User clicks the link in the activation email. Program checks the activation id in the useractivation table. If everything is ok, the usergroupid is changed from 3 to 2 in usertable. Activation record in useractivation table is deleted, because it's no longer needed.
Ok. All works well. The user can do anything he wants just as he would normally do when he registers using forums/register.php.
But..(you know it's coming!) there is a headache for the admin. In the admin control panel, username, email, IP, and all those fields are EMPTY for this user. Options like receive admin email, PM options, etc., are all set ok. Only the username, email, IP fields are empty.
Do I need to update another table? Doesn't admin control panel use the user table to display the user profile?
ArbuZz
07-10-2008, 06:38 PM
Personally I got very odd:"Existing data passed is not an array" while using amatulic's class and when doing:
$userdata['username'] = $_POST['username'];
$userdata['password'] = $_POST['password'];
$userdata['email'] = $_POST['email'];
$forum->register_newuser($userdata));
What maybe the problem? Anyone?
--------------- Added 1215718968 at 1215718968 ---------------
Called set_existing in ..class.forumops.php on line 296
Called login in ..class.forumops.php on line 153
I guess this has something with vBulletin's way to manage database connections :(
--------------- Added 1215719381 at 1215719381 ---------------
This doesn't help:
$cwd = getcwd();
chdir('.../forum');
require_once('global.php');
chdir($cwd);
--------------- Added 1215760256 at 1215760256 ---------------
ok. for some unknown reason in the userdata_convert function exist the following line:
$vbuser = array( 'username' => $userdata['userid'] );
:confused: but why?! I guess it has to be:
$vbuser = array( 'username' => $userdata['username'] );
I've moved amatulic's class in the different place, stored variables in $_SESSION and called header redirect to it. So that now it has totally separated namespace. However I'm not sure if this is secure thing to do.
As I've figured out, there is some problem with login part, cause as soon as I turned it off, I was able to register user in vBulletin. At least it has showed up in the database.
--------------- Added 1215760677 at 1215760677 ---------------
It is "function fetch_userinfo_from_username" that does the trouble. It is not able to retrieve the information from database with its:
...
global $vbulletin;
$useridq = $vbulletin->db->query_first_slave("SELECT userid FROM " . TABLE_PREFIX . "user WHERE username='{$username}'");
...
Any ideas how to correct this?
--------------- Added 1215769463 at 1215769463 ---------------
ok. for some reason $login variable is set to true in register_newuser so that it tries to login user by default as soon as he/she is registered. However it seems that user is not inserted in database yet, when the function tries to login him/her. I don't know why, but that's what happens. So I've turned $login to false, like this:
function register_newuser(&$userdata, $login = false)
Also I rewrote db connection, but I think It worked without it. Now everything works. Thank you amatulic. I've lost two days figuring out the faults, but thanks god it works and that's the best news :) Here is my working version if anyone's interested:
<?php
//================================================== ============
// class ForumOps - intended to be used with vBulletin 3.7.2
// by Alex Matulich, June 2008, Unicorn Research Corporation
//
// Setup:
// ------
//
// 1. First, make sure FORUMPATH is defined properly below.
//
// 2. Next, make sure the function userdata_convert correctly converts
// an array of your own user data to an array of vBulletin user data.
// Minimally, you need to convert your data to an array containing
// the keys 'username', 'password', and 'email'. If your data array
// already contains these keys, simply have userdata_convert return
// the original array, otherwise translate your array to a vBulletin
// array having those keys.
//
// Usage:
// ------
//
// At the top of your php modules where you need to perform vBulletin
// user operations (creation, deletion, updating, login, and logout),
// put these two lines (where MY_PATH is the path to this file):
//
// require_once(MY_PATH.'/class.forumops.php');
// $forum = new ForumOps();
//
// Now get your user data array from $_POST or whatever. Let's call
// this array $userdata. Here's what you can do:
//
// CREATE AND REGISTER NEW USER:
//
// $errmsg = $forum->register_newuser($userdata);
//
// UPDATE EXISTING USER DATA:
//
// $errmsg = $forum->update_user($userdata);
//
// (In this case, $userdata need contain only the username and anything
// else you wish to update, such as password and/or email address.)
//
// $errmsg contains any error messages separated by <br> codes.
// If no errors occured then NULL is returned.
//
// DELETE USER:
//
// $forum->delete_user($username); // $username = user name
//
// LOGIN USER TO THE FORUM:
//
// $forum->login( // requires array to be passed
// array('username' => $username, 'password' => $pw);
//
// LOG OFF USER FROM THE FORUM:
//
// $forum->logout();
//
// WARNING: It is common for you to have TABLE_PREFIX defined for
// your own database. You must call it something else (for example,
// remove the underscore) or it will conflict with the vBulletin
// definition of the same name.
//================================================== =============
//================================================== =============
// Change this definition and the userdata_convert() function
// to suit your needs:
define('FORUMPATH', $_SERVER['DOCUMENT_ROOT'].'/forum'); // path to your forum
function userdata_convert(&$userdata) // internal function
{
// $userdata is our array that contains user data from our own
// user database, which we must convert to the vBulletin values.
// Minimally, it must contain the username, email and/or password.
// required fields
$vbuser = array( 'username' => $userdata['username'] );
if (isset($userdata['email']))
$vbuser['email'] = $userdata['email'];
if (isset($userdata['password']))
$vbuser['password'] = $userdata['password'];
// extra stuff, expand as desired
if ($userdata['birthdate'])
$vbuser['birthday_search'] = date('Y-m-d', $userdata['birthdate']);
return $vbuser;
}
// end of configuration stuff
//================================================== =============
define('REGISTERED_USERGROUP', 2); // typical default for registered users
define('PERMANENT_COOKIE', false); // false=session cookies (recommended)
define('THIS_SCRIPT', __FILE__);
$cwd = getcwd();
chdir(FORUMPATH);
require_once('./global.php');
require_once('./includes/init.php'); // includes class_core.php
require_once('./includes/class_dm.php'); // for class_dm_user.php
require_once('./includes/class_dm_user.php'); // for user functions
require_once('./includes/functions.php'); // vbsetcookie etc.
require_once('./includes/functions_login.php'); // process login/logout
//---------------------------------------------------------------------
// This function duplicates the functionality of fetch_userinfo(),
// using the user name instead of numeric ID as the argument.
// See comments in includes/functions.php for documentation.
//---------------------------------------------------------------------
function fetch_userinfo_from_username($username, $option=0, $languageid=0)
{
global $vbulletin, $db;
$result = $db->query("SELECT * FROM "
. TABLE_PREFIX . "user WHERE username = '".$username."'");
$useridq = $db->fetch_array($result);
if (!$useridq) return $useridq;
$userid = $useridq['userid'];
return fetch_userinfo($userid, $option, $languageid);
}
//---------------------------------------------------------------------
// CLASS ForumOps
//---------------------------------------------------------------------
class ForumOps extends vB_DataManager_User {
var $userdm;
function ForumOps() // constructor
{
global $vbulletin;
$this->userdm =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
}
//======== USER REGISTRATION / UPDATE / DELETE ========
function register_newuser(&$userdata, $login = false)
{
global $vbulletin;
$vbuser = userdata_convert($userdata);
foreach($vbuser as $key => $value)
$this->userdm->set($key, $value);
$this->userdm->set('usergroupid', REGISTERED_USERGROUP);
// Bitfields; set to desired defaults.
// Comment out those you have set as defaults
// in the vBuleltin admin control panel
$this->userdm->set_bitfield('options', 'adminemail', 1);
$this->userdm->set_bitfield('options', 'showsignatures', 1);
$this->userdm->set_bitfield('options', 'showavatars', 1);
$this->userdm->set_bitfield('options', 'showimages', 1);
$this->userdm->set_bitfield('options', 'showemail', 0);
if ($login) $this->login($vbuser);
//$this->userdm->errors contains error messages
if (empty($this->userdm->errors))
$vbulletin->userinfo['userid'] = $this->userdm->save();
else
return implode('<br>', $this->userdm->errors);
return NULL;
}
function update_user(&$userdata)
{
global $vbulletin;
$vbuser = userdata_convert($userdata);
if (!($existing_user = fetch_userinfo_from_username($vbuser['username'])))
return 'fetch_userinfo_from_username() failed.';
$this->userdm->set_existing($existing_user);
foreach($vbuser as $key => $value)
$this->userdm->set($key, $value);
// reset password cookie in case password changed
if (isset($vbuser['password']))
vbsetcookie('password',
md5($vbulletin->userinfo['password'].COOKIE_SALT),
PERMANENT_COOKIE, true, true);
if (count($this->userdm->errors))
return implode('<br>', $this->userdm->errors);
$vbulletin->userinfo['userid'] = $this->userdm->save();
return NULL;
}
function delete_user(&$username)
{
// The vBulletin documentation suggests using userdm->delete()
// to delete a user, but upon examining the code, this doesn't
// delete everything associated with the user. The following
// is adapted from admincp/user.php instead.
// NOTE: THIS MAY REQUIRE MAINTENANCE WITH NEW VBULLETIN UPDATES.
global $vbulletin;
$db = &$vbulletin->db;
$userdata = $db->query_first_slave("SELECT userid FROM "
. TABLE_PREFIX . "user WHERE username='{$username}'");
$userid = $userdata['userid'];
if ($userid) {
// from admincp/user.php 'do prune users (step 1)'
// delete subscribed forums
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "subscribeforum WHERE userid={$userid}");
// delete subscribed threads
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "subscribethread WHERE userid={$userid}");
// delete events
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "event WHERE userid={$userid}");
// delete event reminders
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "subscribeevent WHERE userid={$userid}");
// delete custom avatars
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "customavatar WHERE userid={$userid}");
$customavatars = $db->query_read("SELECT userid, avatarrevision FROM "
. TABLE_PREFIX . "user WHERE userid={$userid}");
while ($customavatar = $db->fetch_array($customavatars)) {
@unlink($vbulletin->options['avatarpath'] . "/avatar{$customavatar['userid']}_{$customavatar['avatarrevision']}.gif");
}
// delete custom profile pics
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "customprofilepic WHERE userid={$userid}");
$customprofilepics = $db->query_read(
"SELECT userid, profilepicrevision FROM "
. TABLE_PREFIX . "user WHERE userid={$userid}");
while ($customprofilepic = $db->fetch_array($customprofilepics)) {
@unlink($vbulletin->options['profilepicpath'] . "/profilepic$customprofilepic[userid]_$customprofilepic[profilepicrevision].gif");
}
// delete user forum access
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "access WHERE userid={$userid}");
// delete moderator
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "moderator WHERE userid={$userid}");
// delete private messages
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "pm WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "pmreceipt WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "session WHERE userid={$userid}");
// delete user group join requests
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "usergrouprequest WHERE userid={$userid}");
// delete bans
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "userban WHERE userid={$userid}");
// delete user notes
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "usernote WHERE userid={$userid}");
// from admincp/users.php 'do prune users (step 2)'
// update deleted user's posts with userid=0
$db->query_write("UPDATE " . TABLE_PREFIX
. "thread SET postuserid = 0, postusername = '"
. $db->escape_string($username)
. "' WHERE postuserid = $userid");
$db->query_write("UPDATE " . TABLE_PREFIX
. "post SET userid = 0, username = '"
. $db->escape_string($username)
. "' WHERE userid = $userid");
// finally, delete the user
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "usertextfield WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "userfield WHERE userid={$userid}");
$db->query_write("DELETE FROM " . TABLE_PREFIX
. "user WHERE userid={$userid}");
}
/*
the following is suggested in the documentation but doesn't work:
$existing_user = fetch_userinfo_from_username($username);
$this->userdm->set_existing($existing_user);
return $this->userdm->delete();
*/
}
// ======== USER LOGIN / LOGOUT ========
function login($vbuser)
{
global $vbulletin;
$vbulletin->userinfo = fetch_userinfo_from_username($vbuser['username']);
// update password expire time to
// to prevent vBulletin from expiring the password
$this->userdm->set_existing($vbulletin->userinfo);
$this->userdm->set('passworddate', 'FROM_UNIXTIME('.TIMENOW.')', false);
$this->userdm->save();
// set cookies
vbsetcookie('userid', $vbulletin->userinfo['userid'],
PERMANENT_COOKIE, true, true);
vbsetcookie('password',
md5($vbulletin->userinfo['password'].COOKIE_SALT),
PERMANENT_COOKIE, true, true);
// create session stuff
process_new_login('', 1, '');
}
function logout()
{
process_logout(); // unsets all cookies and session data
}
} // end class ForumOps
chdir($cwd);
?>
One additional note. I don't use update and delete functions of this class, so I didn't test them. Have that in mind when using.
Jonaid
07-13-2008, 12:22 AM
Is there any chance that this'll work, cross site? I'd added a forum on a different server to my main site and I wanted to sync the signups so when someone signs up on my main site it signs them up on the forum.
Any advice??
Regards,
Jonaid
ArbuZz
07-14-2008, 09:55 AM
You can use cURL php extension, however I do not know whether it is active by default. With cURL you can call any remote php script and pass parameters to it through the ordinary POST, just like you do it from HTML form.
Peter Bowen
07-20-2008, 05:11 PM
Hi,
I'm using amatulic's code in an attempt to create a new user but I keep on getting this error even when using the example test code for making a new user. Any ideas?
Fatal error: Existing data passed is not an array
Called set_existing in /var/www/vhosts/carrington-club-international.co.uk/httpdocs/include/class.forumops.php on line 296
Called login in /var/www/vhosts/carrington-club-international.co.uk/httpdocs/include/class.forumops.php on line 153
Called register_newuser in /var/www/vhosts/carrington-club-international.co.uk/httpdocs/testforumreg.php on line 14
in [path]/includes/class_dm.php on line 235
Thanks
Pete
Selter
09-18-2008, 11:50 AM
Hi threre,
I've got some trouble running the PHP code from the first post. To be honest - I'm not so familiar with PHP :(
It would be great if anybody could have a look into this ...
(I already posted this issue in the german board http://www.vbulletin-germany.com/forum/showthread.php?t=38534 and was advised to ask the author of the code ;) )
Below you'll find the (entire) code which I use in a PHP file (called createuser.php).
I started the code by entering http://www.xyz.de/_forum/createuser.php in the URL-field of my browser.
<?php
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 1);
define('SKIP_USERINFO', 1);
define('CWD', '.');
require_once(CWD . '/includes/init.php');
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', 'selter');
$newuser->set('email', 'selter@xyz.de');
$newuser->set('password', 'geheim');
$newuser->set('usergroupid', 2);
$newuserid = $newuser->save();
?>
Unfortunately I got this error message:
Fatal error: vb_error_handler() [function.require]: Failed opening required 'DIR/includes/functions_log_error.php' (include_path='.:/usr/lib/php') in /xxxxxxx/htdocs/_forum/includes/class_core.php on line 3247
Where is the bug???
Thanks
Selter
Andreas
10-13-2008, 06:52 AM
Where is the bug???
init.php
if (CWD == '.')
{
// getcwd() failed and so we need to be told the full forum path in config.php
if (!empty($vbulletin->config['Misc']['forumpath']))
{
define('DIR', $vbulletin->config['Misc']['forumpath']);
}
else
{
trigger_error('<strong>Konfigurationsfehler</strong>: Sie muessen in der Datei config.php bei <strong>forumpath</strong> einen Eintrag vornehmen.', E_USER_ERROR);
}
}
else
{
define('DIR', CWD);
}
=> Set CWD properly, eg. full path
mariusvr
10-28-2008, 10:38 AM
--------------- Added 11 Jul 2008 at 16:17 ---------------
It is "function fetch_userinfo_from_username" that does the trouble. It is not able to retrieve the information from database with its:
...
global $vbulletin;
$useridq = $vbulletin->db->query_first_slave("SELECT userid FROM " . TABLE_PREFIX . "user WHERE username='{$username}'");
...
Any ideas how to correct this?
I am having the same error coming up when using the following code. The db object seems to empty when updating the user stats. The strange thing is that the user was created succesfully, before vbulletin crashes with this error:
Fatal error: Call to a member function query_first() on a non-object in /home/jfusiono/public_html/demo/vbulletin/includes/functions_databuild.php on line 1684
I am using the following code:
//load the vbulletin framework
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 1);
define('SKIP_USERINFO', 1);
define('CWD', $params->get('source_path'));
global $vbulletin;
require_once(CWD . '/includes/init.php');
//setup the new user
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $userinfo->username);
$newuser->set('email', $userinfo->email);
$newuser->set('password', $userinfo->password_clear);
$newuser->set('usergroupid', $usergroup);
$newuser->set('password', $userinfo->password_clear);
$newuserid = $newuser->save();
This is the final hurdle before releasing a Beta version of JFusion, a revolutionary Joomla universal bridge. Any help would be greatly appreciated.
Thanks, Marius
harty83
10-30-2008, 02:52 PM
This is the final hurdle before releasing a Beta version of JFusion, a revolutionary Joomla universal bridge. Any help would be greatly appreciated.
Thanks, Marius
Very unlikely the problem, but you are setting the password twice?
$newuser->set('password', $userinfo->password_clear);
$newuser->set('usergroupid', $usergroup);
$newuser->set('password', $userinfo->password_clear);
$newuserid = $newuser->save();
thewitt
11-13-2008, 01:47 AM
This "Call to a member function" problem occurs when you try to use the Data Manager from within another program.
I have a stand alone php script that works great to set the usergroups using the Data Manager, however when I try to integrate it into my CMS, I get these errors.
I don't know if there is a workaround or not - short of removing the vB includes from the CMS application - but I suspect there is.
It's simply beyond my understanding.
I hat to go with the CURL and remote approach, but I might be forced into it if no one has any other ideas...
-t
mariusvr
11-30-2008, 10:13 PM
The problem was that the scope of the global variable is not available to all vbulletin code when called from a more complex script (standalone php file seems to work fine). Our newest addition to the JFusion programmers team has found a solution on how to make it work even from inside another program:
global $vbulletin;
require_once(CWD . './includes/init.php');
//work around to make global vbulletin stick
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//vbulletin db object which is needed for vbulletin's project tools addon
$db = $vbDb;
This resets the global objects in the main script and allows it to be available for the next set of calls to the vb datamanager.
Thanks, Marius
harty83
11-30-2008, 10:37 PM
global $vbulletin;
require_once(CWD . './includes/init.php');
//work around to make global vbulletin stick
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//vbulletin db object which is needed for vbulletin's project tools addon
$db = $vbDb;
Just as a FYI, the first line (global $vbulletin) is not necessary. That was overlooked on my part. The full code that got it working is
//load the vbulletin framework
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 1);
define('SKIP_USERINFO', 1);
define('CWD', 'path/to/vbulletin/forum'));
require_once(CWD . './includes/init.php');
//work around to make global vbulletin stick
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//vbulletin db object which is needed for vbulletin's project tools addon
$db = $vbDb;
Thanks!
Alan
mariusvr
11-30-2008, 10:43 PM
No thank you Alan. Great piece of troubleshooting on the issue and you have raised the level of functionality for the vbulletin JFusion plugin by a lot! Its a pleasure to have you involved with JFusion.
Thanks, Marius
jdelator
12-18-2008, 07:13 PM
Has this tutorial changed muched for 3.7 since it was original written for 3.5?
Sagi22
12-29-2008, 02:44 PM
It seems for me that after including vBulletin's classes that the connection link to the DB is still open, and I can't access my previous DB link.
The problem is that my forum tables are in different datebase.
How I can disconnect from VB link?
Thanks.
apollothethird
01-20-2009, 03:13 AM
As this is a common request for integration purposes, I thought I should write up another HowTo :)
If you want to add a new user to the vBulletin database, you can use Class vB_Datamanager_User.
This Calss does make sure that everything is OK, it will also take care of the default registration options.
Andreas, great code!
I have a userfield included in my registration process for Full Name. You can find it in the User Manager under the User Profile Fields section called ?Full Name?. Its writing ?field5? in the mysql database file.
Can you tell me how to include this in the new users? creation?
Thanks in advance for any suggestions or comments.
-- L. James
--
L. D. James
ljames@apollo3.com
www.apollo3.com/~ljames
positiverep
01-23-2009, 05:07 PM
Has this tutorial changed muched for 3.7 since it was original written for 3.5?
I'm running 3.7 and had no problem installing the script.:D
smooth-c
01-29-2009, 09:52 AM
I'm using the integration plugin between Interspire's Email Markerter and i'm now, out of the blue experiencing these problems.
This seems to be working flawlessly except lately i've noticed that it's missed out a few members and not added them to my mailing list.
Any ideas why this would happen? Here's my plugin code;
$username = $userinfo['username'];
$email= $userinfo['email'];
$userid= $userinfo['userid'];
$xml = "<xmlrequest>
<username>admin</username>
<usertoken>XX8410b36f01de9fe7df722ab2864677afddfaXX</usertoken>
<requesttype>subscribers</requesttype>
<requestmethod>AddSubscriberToList</requestmethod>
<details>
<emailaddress>$email</emailaddress>
<mailinglist>1</mailinglist>
<format>html</format>
<confirmed>yes</confirmed>
<customfields>
<item>
<fieldid>12</fieldid>
<value>$username</value>
</item>
<item>
<fieldid>13</fieldid>
<value>$userid</value>
</item>
</customfields>
</details>
</xmlrequest>
";
$ch = curl_init('http://www.maximum-jackson.com/interspire/xml.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
$result = @curl_exec($ch);
if($result === false) {
echo "Error performing request";
}
else {
$xml_doc = simplexml_load_string($result);
//echo 'Status is ', $xml_doc->status, '<br/>';
if ($xml_doc->status == 'SUCCESS') {
//echo 'Data is ', $xml_doc->data, '<br/>';
} else {
//echo 'Error is ', $xml_doc->errormessage, '<br/>';
}
} Any help would be greatly appreciated!
tomypro
04-10-2009, 10:42 PM
Hi,
Im using ArbuZz's code base and its working create; i am using it as well as a SSO bridge between my app and the integrated vbulletin board.
Once thing i would like to achieve is that as soon as I trigger the login call for a user through my busines logic not only the session cookie is set but that that partiular users appears as online within vbulletin as well.
Is this something that can be achieved through the Data API as well?
//Thomas
nessur
05-04-2009, 08:50 PM
Thank you, and thank you! This fixed my problem.
Just as a FYI, the first line (global $vbulletin) is not necessary. That was overlooked on my part. The full code that got it working is
//load the vbulletin framework
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 1);
define('SKIP_USERINFO', 1);
define('CWD', 'path/to/vbulletin/forum'));
require_once(CWD . './includes/init.php');
//work around to make global vbulletin stick
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//vbulletin db object which is needed for vbulletin's project tools addon
$db = $vbDb;
Thanks!
Alan
After hours of hacking at this, I am once again stuck. I have included this code in my CMS.
if ($vbswitch == 'Y') {
chdir('./forums');
define('THIS_SCRIPT','pg_usermgmt2.php');
// define('VB_AREA', 'Forum');
require_once("global.php");
require_once("./includes/class_dm.php");
require_once("./includes/class_dm_user.php");
chdir('../');
};
and lower down
if ($vbswitch == 'Y') {
$newuser = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
// $newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $UserName);
$newuser->set('email', $EMail);
$newuser->set('password', $Password);
$newuser->set('usergroupid', 2);
if ($newuser->errors) {
echo $newuser->errors;
}
else {
$newuserid = $newuser->save();
};
When the second block of code executes, I get the error:
Database object is not an object in [path]/includes/class_dm.php on line 172
I am stumped. I tried adding the global hack referenced a few posts back, and it did nothing for me. I am spending more time trying to get VB rgistration integrated that I am writing my entire CMS!!! ARRRGGGHHH !!!!! I would gladly pay someone to do this for me if I could find them.
**********************************
Nevermind. I just wrote my own object. WAY faster and easier.
php-resource.de
05-13-2009, 08:54 AM
After hours of hacking at this, I am once again stuck. I have included this code in my CMS.
if ($vbswitch == 'Y') {
chdir('./forums');
define('THIS_SCRIPT','pg_usermgmt2.php');
// define('VB_AREA', 'Forum');
require_once("global.php");
require_once("./includes/class_dm.php");
require_once("./includes/class_dm_user.php");
chdir('../');
};
and lower down
if ($vbswitch == 'Y') {
$newuser = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
// $newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $UserName);
$newuser->set('email', $EMail);
$newuser->set('password', $Password);
$newuser->set('usergroupid', 2);
if ($newuser->errors) {
echo $newuser->errors;
}
else {
$newuserid = $newuser->save();
};
When the second block of code executes, I get the error:
Database object is not an object in [path]/includes/class_dm.php on line 172
I am stumped. I tried adding the global hack referenced a few posts back, and it did nothing for me. I am spending more time trying to get VB rgistration integrated that I am writing my entire CMS!!! ARRRGGGHHH !!!!! I would gladly pay someone to do this for me if I could find them.
**********************************
Nevermind. I just wrote my own object. WAY faster and easier.
I guess you are using the global $db within your CMS.
Try the following workaround:
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//backup the original $db object (new!!)
$backupdb = $db;
$db = $vbDb;
/*
* Your code here
*/
// Restore your $db object (new!!)
$db = $backupdb;
Thanks. I had already tried that, then removed it. That was my reference to "the global hack referenced a few posts back". It did not help. At this point I am creating a new user and maintaining critical fields managed with some SQL directly into the vB database. As soon as I figure out cookies and login, I am good to go. That is, until vB changes the user scheme, at which time i will have an ongoing maintenance nightmare. OTOH it took me 2-3 hours to figure out and write the custom code from scratch, and I spent many more hours than that (and got more frustrated) trying to research and utilize the VB object library.
Added -----
After more review, I see that you added lines relating to $backupdb. That may have done the trick, but dealing with vB and its programming philosophy is just a nightmare, and I am too close to done to go backwards again. Thanks for your effort though.
andha513
08-05-2009, 09:05 PM
I am porting all my users from a social networking site (Drupal CMS) to our new vBulletin forum, but having a small issue.
Since all Drupal passwords are already MD5'ed, I am simply creating vBulletin users manually by connecting to the vBulletin database and inserting the appropriate data into the user-table, the userfield-table and the usertextfield-table. (Since this is what I gather from the vBulletin registration script)
The users are created fine and working well, except that all users created with my script get the "Guest" title in their forum posts. And I just can't figure out why.
There are no users in the unregistered/guest usergroup (where people are assigned the "Guest" title), so that's not it.
We have no "Guest" user title in the User Title Manager, so that's not it either.
I'm assuming I'm missing to add some data to some table for each user. Would someone here be able to offer some help?
Thanks in advance.
ringleader
09-07-2009, 02:22 PM
We have no "Guest" user title in the User Title Manager, so that's not it either.
I'm assuming I'm missing to add some data to some table for each user. Would someone here be able to offer some help?
I assume you fixed your problem by now.
If not, you have to set the usergroup id for each member:
$newuser->set('usergroupid', 2);
andha513
09-07-2009, 02:45 PM
I assume you fixed your problem by now.
If not, you have to set the usergroup id for each member:
$newuser->set('usergroupid', 2);
Thanks, but I do set the usergroup id for each member (to 2).
Problem not really solved, but vBulletin's own "fix broken user profiles" feature does correct the user profiles, and I'm ok with this for now.
ringleader
09-07-2009, 03:01 PM
usergroupid=2 is normally the default setting for the 'registered users' group.
Go to http://www.YourForumAddressHere.com/admincp/usergroup.php?do=modify and use whichever number for the usergroupid that you want to set for each member you're importing.
The usergroupid sets the permissions that you want the user to have on the forums.
Is that clearer for you?
andha513
09-07-2009, 03:39 PM
I appreciate the effort, but I am aware of all this. Unless there is another database table related to the usergroups, the usergroups do not seem to be the problem here.
usergroupid=2 is normally the default setting for the 'registered users' group.
Go to http://www.YourForumAddressHere.com/admincp/usergroup.php?do=modify and use whichever number for the usergroupid that you want to set for each member you're importing.
The usergroupid sets the permissions that you want the user to have on the forums.
Is that clearer for you?
mikesharp
09-14-2009, 11:15 AM
Is there an update on a working version of this for 3.8.x ???
thanks all
Mike
ragtek
09-14-2009, 01:16 PM
Is there an update on a working version of this for 3.8.x ???
thanks all
Mike
No, the code is still working
webtechuser
09-24-2009, 01:30 PM
I cant login from the site page using the user wich i have created according the way described above...can somebody plz help me :(
damianzaremba4
09-27-2009, 01:56 PM
I get the error Fatal error: Call to a member function query_read_slave() on a non-object in /var/www/test_forums/includes/functions_misc.php on line 789 Every time I try to run the code:
function register($username, $password, $email){
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 0);
define('SKIP_USERINFO', 1);
define('CWD', $this->forum_path);
require_once(CWD . '/includes/init.php');
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $username);
$newuser->set('email', $email);
$newuser->set('password', $password);
$newuser->set('usergroupid', $this->forum_awaiting_confomation_group);
if(empty($newuser->errors)){
return $newuser->save();
}else{
return $newuser->errors;
}
}
Any one got an idea why?
Thanks.
Andreas
09-30-2009, 04:25 PM
Any one got an idea why?
Yep - Variable Scope.
Booting vBulletin from non-global scope is a bit tricky.
Crimm
11-11-2009, 06:37 PM
I guess you are using the global $db within your CMS.
Try the following workaround:
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//backup the original $db object (new!!)
$backupdb = $db;
$db = $vbDb;
/*
* Your code here
*/
// Restore your $db object (new!!)
$db = $backupdb;
I just wanted to say that I was implementing this article with Wordpress and kept getting errors about functions_databuild.php on line 1685. So I added "global $vbulletin" and started having the issue of class_dm.php on line 177 about Registry Object. The above code worked for me.
So here's my function (A combination of those in this article for wordpress)
// Function for vB registration //
function register_in_vb($username, $password, $email){
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 0);
define('SKIP_USERINFO', 1);
define('CWD', 'ABSOLUTE_VB_PATH' );
require_once(CWD . '/includes/init.php');
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//backup the original $db object (new!!)
$backupdb = $db;
$db = $vbDb;
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $username);
$newuser->set('email', $email);
$newuser->set('password', $password);
$newuser->set('usergroupid', 3);
if(empty($newuser->errors)){
$db = $backupdb;
return $newuser->save();
}else{
$db = $backupdb;
return $newuser->errors;
}
}
and I called it on wp-login.php in the register_new_user function. I added it right after the User Password Generation so I could pass it to vB.
// Add the users to vBulletin
$newuserid = register_in_vb($user_login, $user_pass, $user_email);
That should help some people if you come across this :P
yappa.be
11-27-2009, 06:51 AM
Hello,
A few weeks ago, we launched a website with a custom registration in stead of register.php to add new users. With the help of this forum, we succeeded without any problems.
Since last monday, the register was down. The php-code did not change so we have no clue what so ever what could be the problem.
Error code:
<b>Fatal error</b>: Call to a member function query_read() on a non-object in <b>/var/www/html/forum/includes/adminfunctions.php</b> on line <b>2403</b><br />
//load the vbulletin framework
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 1);
define('SKIP_USERINFO', 1);
define('CWD', PATH);
require_once(CWD . '/includes/init.php');
//work around to make global vbulletin stick
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//vbulletin db object which is needed for vbulletin's project tools addon
$db = $vbDb;
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $this->data['User']['firstname'].' '.$this->data['User']['lastname']);
$newuser->set('email', $this->data['User']['email']);
$newuser->set('password', $this->data['User']['password']);
$newuser->set('birthday', $this->data['User']['birthday']);
$newuser->set('usergroupid', 2);
$userfields['field11'] = $this->data['User']['optin'];
$userfields['field5'] = $this->data['User']['abo_nr'];
$userfields['field6'] = $this->data['User']['firstname'];
$userfields['field7'] = $this->data['User']['lastname'];
//userfields
$newuser->set_userfields($userfields);
if($this->data['User']['password']!=$this->data['User']['retype_password']){
$newuser->errors[] = 'password_error';
}
if(!$newuser->errors){
if($newuserid = $newuser->save()){
echo 'success';exit;
}
}
After doing some searching, we found that the error is generated in the function build_options in includes/adminfunctions.php. This function is called in includes/class_core.php in the function check_options.
Does anybody have an idea what could be the problem. It seems that because of some changes in the settings (or something like that), we lost our database-object but didn't change anything to the code itself.
Crimm
11-27-2009, 07:56 PM
I just happen to pass by here looking for something else and I saw your response.
Did you add a profile field, maybe?
Just a thought. If you get it figured out, please post the solution :)
bianca_roma
12-01-2009, 10:09 AM
I am porting all my users from a social networking site (Drupal CMS) to our new vBulletin forum, but having a small issue.
Since all Drupal passwords are already MD5'ed, I am simply creating vBulletin users manually by connecting to the vBulletin database and inserting the appropriate data into the user-table, the userfield-table and the usertextfield-table. (Since this is what I gather from the vBulletin registration script)
The users are created fine and working well, except that all users created with my script get the "Guest" title in their forum posts. And I just can't figure out why.
There are no users in the unregistered/guest usergroup (where people are assigned the "Guest" title), so that's not it.
We have no "Guest" user title in the User Title Manager, so that's not it either.
I'm assuming I'm missing to add some data to some table for each user. Would someone here be able to offer some help?
Thanks in advance.
I have the same problem...Did you manage to resolve this issue? i'm desperate...
Iron Star
01-06-2010, 03:27 PM
Unfortunately, I obtain this:
Fatal error: Call to a member function do_db_fetch() on a non-object in vb_forum/includes/init.php on line 308
An idea?
I just wanted to say that I was implementing this article with Wordpress and kept getting errors about functions_databuild.php on line 1685. So I added "global $vbulletin" and started having the issue of class_dm.php on line 177 about Registry Object. The above code worked for me.
So here's my function (A combination of those in this article for wordpress)
// Function for vB registration //
function register_in_vb($username, $password, $email){
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 0);
define('SKIP_USERINFO', 1);
define('CWD', 'ABSOLUTE_VB_PATH' );
require_once(CWD . '/includes/init.php');
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//backup the original $db object (new!!)
$backupdb = $db;
$db = $vbDb;
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $username);
$newuser->set('email', $email);
$newuser->set('password', $password);
$newuser->set('usergroupid', 3);
if(empty($newuser->errors)){
$db = $backupdb;
return $newuser->save();
}else{
$db = $backupdb;
return $newuser->errors;
}
}
and I called it on wp-login.php in the register_new_user function. I added it right after the User Password Generation so I could pass it to vB.
// Add the users to vBulletin
$newuserid = register_in_vb($user_login, $user_pass, $user_email);
That should help some people if you come across this :P
F5-MVH
01-07-2010, 04:49 PM
Using the class ForumOps (which by the way is brilliant)...... I am trying to figure out how to pass a delimited txt file of user information to it. Any help would be appreciated.
To elaborate - We have a corporate text file with the following
'user name','email address'
I need to generate new VBulletin accounts for all them.
Cheers!
Dave
lanzeym
02-03-2010, 03:08 PM
Hi,
I am now able to programmatically add user by modifying script above but I have a problem when I tried to insert user from our existing database that has more than 25 character. I?m getting an error ?Username cannot be longer than 25 characters?. Can you guide me on how can I disable the maximum characters allowed for username?
I have basic knowledge in php and I look through the following included files but I can't see the function for validation the maximum length.
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
Anybody have done this before?
Thanks!
bigtime
02-03-2010, 03:50 PM
lanzeym, sounds like you may need to make your existing database field for username larger than 25 characters.
lanzeym
02-03-2010, 04:09 PM
hi bigtime!
The save() methods uses vBulletin "user" table that has varchar(100) length, so there's no need for changing field lenght. There should be a hard coded "maxlength" that I don't know where it is.
bigtime
02-03-2010, 04:37 PM
Oops, I misunderstood. I thought you were inserting users into your existing database...
lanzeym
02-04-2010, 04:12 PM
here's how to remove the validation.
AdminCP > vBulletin Options > User Registration Options > Maximum Username Length
Tibald
05-29-2010, 01:30 PM
Anybody can help with code example for manual users registration and login for vb 4 ?
ilbianconiglio
07-13-2010, 12:59 PM
I'm trying to add a new user with VB 4.0.
I'm using the latest snippet of code but when I do $newuser->save(); it saves the record to the db but return to a Database error page ( of VB ).
What can I do?
--------------- Added 1279029801 at 1279029801 ---------------
Ok maybe I solved.
For VB 4 you need to add this:
$newuser->pre_save();
before save() or checking errors :)
calwebsnc
07-20-2010, 08:09 AM
Hi,
I am trying to do something similar.
I wrote a class inside a file in the main directory of my forum.
This is the code:
<?php
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
class codeigniter_bridge{
function codeigniter_bridge(){
$this->usernamager =& datamanager_init('User', $vbulletin);
}
function prova(){
return $foruminfo = fetch_foruminfo(1);
}
}
?>
I receive this error:
Fatal error: Call to a member function do_db_fetch() on a non-object in /var/www/cyberludus.com/system/forum/includes/init.php on line 308
Where I do wrong?
Thank you
epolitica
11-23-2010, 01:32 PM
The code seems to be working, but when in debug mode a lot of notices show up. I`d rather they shouldn`t:
Notice (8): Undefined index: username [/home/path2vb/forum/includes/class_dm_user.php, line 419]
Notice (8): Undefined index: userid [/home/path2vb/forum/includes/class_dm_user.php, line 421]
Notice (8): Undefined index: ajax [/home/path2vb/forum/includes/functions.php, line 2696]
Notice (8): Use of undefined constant LANGUAGEID - assumed 'LANGUAGEID' [/home/path2vb/forum/includes/functions_misc.php, line 795]
Notice (8): Use of undefined constant LANGUAGEID - assumed 'LANGUAGEID' [/home/path2vb/forum/includes/functions_misc.php, line 812]
Notice (8): Undefined variable: errsize [/home/path2vb/forum/includes/class_dm.php, line 322]
Notice (8): Only variable references should be returned by reference [/home/path2vb/forum/includes/class_dm.php, line 294]
Then I got a question, is it possibile to add an user in an inactive state, and only after a third party email validation, enable him/her? I couldn`t find any column in the vb_user table that indicates this active/inactive state, any help?
adbox
01-25-2011, 02:59 PM
Looking for an updated version of this script for 4.1.1
Am getting this error:
Fatal error: Call to undefined function fetch_phrase() in /home2/hatnohat/public_html/forum/includes/functions.php on line 3456
--------------- Added 1295975525 at 1295975525 ---------------
This works for me.
add_user.php (custom API)
<?php
function register_in_vb($username, $password, $email)
{
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 0);
define('SKIP_USERINFO', 1);
define('CWD', './../../forum/' );
require_once(CWD . '/includes/init.php');
require_once(CWD . '/includes/functions_misc.php');
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//backup the original $db object (new!!)
$backupdb = $db;
$db = $vbDb;
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $username);
$newuser->set('email', $email);
$newuser->set('password', $password);
$newuser->set('usergroupid', 9);
$newuser->pre_save();
if(empty($newuser->errors)){
$db = $backupdb;
echo 1;
return $newuser->save();
}else{
$db = $backupdb;
echo 0;
print_r( $newuser->errors);
}
}
$key = $_GET['key'];
$username = $_GET['username'];
$password = $_GET['password'];
$email = $_GET['email'];
if ($key=='mysecretkey')
{
// Add the users to vBulletin
$newuserid = register_in_vb($username, $password, $email);
}
?>
Andreas
01-26-2011, 05:21 PM
Looking for an updated version of this script for 4.1.1
Am getting this error:
Fatal error: Call to undefined function fetch_phrase() in /home2/hatnohat/public_html/forum/includes/functions.php on line 3456
This is caused by a Bug (http://tracker.vbulletin.com/browse/VBIV-10778) that should be fixed in one of the next releases.
In the meantime you can simply add
define('VB_API', false);
to your code.
I used this code and everything was working fine. Users got added, but when they tried to login, they got this message:
You have been banned for the following reason:
No reason was specified.
Date the ban will be lifted: Never
I looked in the banned list. They are not in there. What could have been wrong?
ingwa
09-07-2011, 07:04 PM
Nack, make sure the user group that your user is being created under is being defined. If you aren't in the right group then they show as being banned. Hope this helps.
dog199200
12-03-2011, 12:03 PM
I keep getting a fatal error:Fatal error:
Fatal error: Registry object is not an object in [path]/includes/class_dm.php on line 205
I slightly modified the code above:
Main Code
<?php
mysql_connect($DBhost, $DBuser, $DBpass) or die(mysql_error());
mysql_select_db($DBname) or die(mysql_error());
$RegAllowArray = mysql_query("SELECT * FROM setting WHERE varname = 'allowregistration'") or die(mysql_error());
$RegAllow = mysql_fetch_array($RegAllowArray);
$CountUserArray = mysql_query("SELECT COUNT(*) FROM user") or die(mysql_error());
$CountUser = mysql_num_rows($CountUserArray);
if($CountUser < 50)
{
if($RegAllow['value'] != 0)
{
function register_in_vb($username, $password, $email, $day, $month, $year)
{
define('VB_AREA', 'External');
define('SKIP_SESSIONCREATE', 0);
define('SKIP_USERINFO', 1);
require_once('/home/shininga/public_html/divineshadowsonline/forum/includes/init.php');
require_once('/home/shininga/public_html/divineshadowsonline/forum/includes/functions_misc.php');
$registry = $vbulletin;
unset($vbulletin);
$vbDb = $registry->db;
//declare as global vbulletin's registry and db objects
global $vbulletin,$db;
$vbulletin = $registry;
//backup the original $db object (new!!)
$backupdb = $db;
$db = $vbDb;
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
$newuser->set('username', $username);
$newuser->set('email', $email);
$newuser->set('password', $password);
$newuser->set('usergroupid', 2);
$newuser->set('displaygroupid', 2);
$newuser->set('birthday', array($month, $day, $year));
$newuser->pre_save();
if(empty($newuser->errors)){
$db = $backupdb;
echo 1;
return $newuser->save();
}else{
$db = $backupdb;
echo 0;
print_r( $newuser->errors);
include("/home/shininga/public_html/divineshadowsonline/includes/register-form.php");
}
}
if(!$logged_in) {
if(isset($_POST['username']))
{
$key = $_POST['key'];
$username = $_POST['username'];
$password = $_POST['password'];
$confirmpass = $_POST['confirmpass'];
$day = $_POST['day'];
$month = $_POST['month'];
$year = $_POST['year'];
$email = $_POST['email'];
$tos = $_POST['tos'];
include("/home/shininga/public_html/divineshadowsonline/includes/register-functions.php");
$newuserid = register_in_vb($username, $password, $email, $day, $month, $year);
} else if(!isset($_POST['username'])) {
include("/home/shininga/public_html/divineshadowsonline/includes/register-form.php");
}
} else {
echo "<h4><center><b>You are already logged in!</b></center></h4>";
}
} else {
echo "<center>Registration Are Currently Disabled</center>";
}
} else {
echo "<center>Registration Are Currently Disabled</center>";
}
mysql_close();
?>
I could really use some help please. :P
adbox
12-06-2011, 03:50 PM
Maybe this resource is related?
https://vborg.vbsupport.ru/showthread.php?t=267099
dog199200
12-06-2011, 06:19 PM
Maybe this resource is related?
https://vborg.vbsupport.ru/showthread.php?t=267099
They seem to be, but it doesn't exactly answer the question. I noticed i only get the error because of my header which i need:
ob_start();
$curdir = getcwd ();
chdir('/home/shininga/public_html/divineshadowsonline/forum/');
require_once('./global.php');
$phrasegroups = array();
$headinclude = str_replace('clientscript', $vbulletin->options['bburl'] . '/clientscript', $headinclude);
chdir ($curdir);
I have that added to the top of every single page because i've build my own api system for my main website around it.
adbox
12-06-2011, 06:28 PM
What if you change your header to this:
require_once('/home/shininga/public_html/divineshadowsonline/forum/');
$phrasegroups = array();
$headinclude = str_replace('clientscript', $vbulletin->options['bburl'] . '/clientscript', $headinclude);
I'm not certain the change directory commands are necessary.
dog199200
12-06-2011, 06:34 PM
Doesn't work. I had to change the directory before because I had to call a lot of the internal features within vB. I'm pulling user information and login checks of all types all over the site. If i just include the global instead of redefining the directory I get this error:
Warning: require_once(./includes/class_bootstrap.php) [function.require-once]: failed to open stream: No such file or directory in /home/shininga/public_html/divineshadowsonline/forum/global.php on line 15
Fatal error: require_once() [function.require]: Failed opening required './includes/class_bootstrap.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/shininga/public_html/divineshadowsonline/forum/global.php on line 15
Edit: Basically without the header being as how i had it, my whole site would break.
dilios
08-25-2014, 07:47 PM
Vbulletin 4.x user registration version:
define('THIS_SCRIPT', 'reguser.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$pass1 = $_REQUEST["pw1"];
$pass2 = $_REQUEST["pw2"];
if ($pass1 == $pass2)
$passwd = $pass1;
else
exit;
$userdm->set('username', $_REQUEST["user"]);
$userdm->set('email', $_REQUEST["email"]);
$userdm->set('password', $passwd);
$userdm->set('usergroupid',2);
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors))
{
echo "<pre>";
var_dump($userdm->errors);
echo "</pre>";
} else {
# If everything is OK
$newuserid = $userdm->save();
echo $newuserid."<br>Done.";
}
bskr84
03-10-2015, 05:28 AM
DONE!Total users created: 0 & Skipped: 100
this script for 3.8.8, can someone kown?
kenny83
10-26-2016, 05:12 PM
I finally got a working script to add a user to vB offline. I maintain a separate Membership System. When a user registers in this separate system, an account is automatically created for them in vB.
When they register (again, this is in my own Member System -- on a different domain), I collect those variables that I need specifically (and minimally) to create an account in vB.
I then cURL those variables to a custom script (called bb_add_user.php) which resides in the root folder of the forum. The results of bb_add_user.php are printed, which are then collected in the result of the cURL. If there are errors, the Membership System takes appropriate action. If successul, then I grab the vbuserid from the cURL result and go about my business.
Although I am still proving this system on a development server, my goal will be to change all of the 'register.php' links on vBulletin and point them to the register script on my Membership System.
Here is the bb_add_user.php code.
<?php
# Add a user to vBulletin (offline)
function qpc_post($varname)
{
return trim(stripslashes((get_magic_quotes_gpc()) ? $_POST[$varname] : addslashes($_POST[$varname])));
}
define('THIS_SCRIPT', 'bb_add_user.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', qpc_post('username'));
$userdm->set('email', qpc_post('email'));
$userdm->set('password', qpc_post('password'));
$userdm->set('usergroupid', 2);
$userdm->set('ipaddress', qpc_post('ipaddress'));
$userdm->set('referrerid', qpc_post('referrername'));
$userdm->set('timezoneoffset', qpc_post('timezoneoffset'));
$userdm->set_bitfield('options', 'adminemail', intval(qpc_post('adminemail')));
$userdm->set_bitfield('options', 'showemail', intval(qpc_post('showemail')));
$dst_setting = intval(qpc_post('dst'));
switch ($dst_setting)
{
case 0:
case 1:
$userdm->set_bitfield('options', 'dstonoff', $dst_setting);
break;
case 2:
$userdm->set_bitfield('options', 'dstauto', 1);
break;
}
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors)) {
for($i=0; $i<count($userdm->errors); $i++) {
print "ERROR{$i}:{$userdm->errors[$i]}\n";
}
} else {
# If everything is OK
$newuserid = $userdm->save();
print "vbuserid:$newuserid\n";
}
?>
OMFG THANK YOU!!!!!!! I didn't require your entire bb_add_user.php, but just the three require_once calls. If the original creator of this thread had just included these three simple lines it would have saved me hours of banging my head against a brick wall. You are the man!!!
Medi0cr3
07-19-2017, 03:07 PM
Does this still work for Vbulletin 4.2.5????? I am having ZERO luck with this. I also have modified THIS_SCRIPT .php file to reflect my php file.
Vbulletin 4.x user registration version:
define('THIS_SCRIPT', 'reguser.php');
require_once('./global.php');
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_user.php');
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$pass1 = $_REQUEST["pw1"];
$pass2 = $_REQUEST["pw2"];
if ($pass1 == $pass2)
$passwd = $pass1;
else
exit;
$userdm->set('username', $_REQUEST["user"]);
$userdm->set('email', $_REQUEST["email"]);
$userdm->set('password', $passwd);
$userdm->set('usergroupid',2);
#If there are errors (eMail not set, eMail banned, Username taken, etc.) you can check for errors using
if (count($userdm->errors))
{
echo "<pre>";
var_dump($userdm->errors);
echo "</pre>";
} else {
# If everything is OK
$newuserid = $userdm->save();
echo $newuserid."<br>Done.";
}
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.