vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB5 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=263)
-   -   Manually create user (https://vborg.vbsupport.ru/showthread.php?t=322129)

lakhai 03-16-2016 04:54 AM

Manually create user
 
hi!
I'm trying to connect my wordpress users with the vB forum, what I want is when a user is created on the WP site to automatically create a forum user with the same login, email and password.
I was using the method from this ancient thread: https://vborg.vbsupport.ru/showthread.php?t=82836
which seemed to work when creating the user, but I cannot set the password as I get the "Field password is not defined in validfields in class..." error.
I then looked at the validfields array in vb/datamanager/user.php field and couldn't find a password field, of course. The closest thing I could think of was the 'secret' field, but that is set as not required and though it creates the user without errors I can't login because of the "invalid_password_scheme" error on login.
What is the best way to create a user via PHP?
Thanks in advance, cheers!

Replicant 03-16-2016 01:49 PM

Checkout these docs for vB_Api_User::save. http://www.k5bp.com/docs/VB5.1.10/classv_b___api___user.html#a317a9e87ccde4e7f730f40 45e6015b3e

lakhai 03-16-2016 06:31 PM

Hey Replicant, thanks a lot for the reply!
I got it to work but got the error: "humanverify_missing"
My code:
Code:

$userApi = vB_Api::instance('user');
        $userid = $userApi->save(
                0,
                $new_pass,
                array(
                        'username' => $user->user_login,
                        'email' => $user->user_email,
                ),
                array(),
                array(),
                array()
        );

I also looked at the documentations related to that, but still don't know how to go about creating it. Should I be using the generateToken function?

Replicant 03-16-2016 07:18 PM

I got the same error when I was playing with it, but don't remember what I did to get around it. I'll have to find my notes.


All times are GMT. The time now is 10:23 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.02783 seconds
  • Memory Usage 1,716KB
  • 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
  • (1)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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