hi,
even if in the class i put the right path i get an error
Call to undefined function register_newuser() in file .... []
my test.php is
(it should work even with the test arrays)
require_once('class.vbulletin-bridge.php');
$forum = new vBulletin_Bridge();
$userdata = array('username'=>'exampleusername','email'=>'
[email protected]','password'=>'examplepassword');
$result = register_newuser($userinfo);
if(!$result)
echo "User registered";
else
echo "Registration failed, reason: $result";