vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   SQL queries to create a valid user (https://vborg.vbsupport.ru/showthread.php?t=186028)

zivester 07-22-2008 02:47 PM

SQL queries to create a valid user
 
I'm creating my own registration form outside of the vbulletin templates... I would like to know what queries are required to successfully add a user to vbulletin. I've done a simple insert into vb_user table but when I try to edit that user from the admincp (they do show up), the form errors and I cannot edit them.

heres the query i use from php (it executes fine without any errors):

Code:

$query = "INSERT INTO vb_user " .  "(usergroupid,username,password,passworddate,email,usertitle,joindate,lastvisit,lastactivity,timezoneoffset,birthday,birthday_search,ipaddress,languageid,salt) " .    "VALUES($usergroupid,'$username','$password',$passworddate,'$email','$usertitle',$joindate,$lastvisit,$lastactivity,$timezoneoffset,'$birthday',$birthday_search,'$ipaddress',$languageid,'$salt')";

What else must be done to create a user?

RLShare 07-22-2008 02:51 PM

Use the User datamanger....

Heres a simple ex.

PHP Code:


        $newuser 
=& datamanager_init('User'$vbulletinERRTYPE_ARRAY);
        
$newuser->adminoverride true;
        
$newuser->set('username'$username);
        
$newuser->set('password'$pass);
        
$newuser->set('email'$email);
        
$newuser->set('usertitle'$usertitle); 
        
$newuser->set('usergroupid'$usergroupid); 
        if(!
$newuser->errors){
               
$newuser->save();
               unset(
$newuser);
               } 

If $newuser-errors is set it will be an array of all errors that occured

zivester 07-22-2008 03:05 PM

What files must be included? datamanager_init() and $vbulletin must be defined somewhere right?

RLShare 07-22-2008 03:09 PM

when you include 'globals.php' everything is done.

zivester 07-22-2008 03:17 PM

i dont have a globals.php, but i have a global.php .... but when i include/require that, my page fails to load.

its the only line in the file...

Code:

require("/mydir/forum/global.php");
echo "SUCCESS";


Opserty 07-22-2008 04:19 PM

PHP Code:

$cwd getcwd();
chdir('mydir/forum');
require_once(
'./global.php');

/* USER CREATION CODE HERE */

chdir($cwd); 


RLShare 07-22-2008 05:05 PM

Sorry the 's was a typo.


All times are GMT. The time now is 01:02 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01092 seconds
  • Memory Usage 1,726KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete