Vbulletin Remote Registration (php Guru Required)

we have a system thats integrated with vBulletin, once the user is registered in the system it gets auto registered in vBulletin using the following code:
if($user->sid == ”){
$posturl2=’http://’.$_SERVER[‘SERVER_NAME’].’/community/register.php?do=addmember&caruname=’.$user->details->properties[‘username’]->value.’&carpass=’.$user->details->properties[‘password’]->value[‘original’].’&caremail=’.$user->details->properties[’email’]->value;
$ch2 = curl_init();
curl_setopt($ch2, CURLOPT_URL,$posturl2);
curl_setopt($ch2, CURLOPT_RETURNTRANSFER, 1);
$data2=curl_exec($ch2);
}
else
{

$posturl2=’http://’.$_SERVER[‘SERVER_NAME’].’/community/profile.php?do=updatepassword&oldcarpass=’.$_SESSION[‘vb_password’].’&newcarpass=’.$user->details->properties[‘password’]->value[‘original’].’&caremail=’.$user->details->properties[’email’]->value;
/*
$ch2 = curl_init();
curl_setopt($ch2, CURLOPT_URL,$posturl2);
curl_setopt($ch2, CURLOPT_RETURNTRANSFER, 1);
$data2=curl_exec($ch2);

$_SESSION[‘vb_password’] = $user->details->properties[‘password’]->value[‘original’];
*/

}

and after asking vBulletin support they said the following:
We did extend the salt size, which may be causing the problem, though you should know we do not provide support for custom code.

Leave a Reply

Your email address will not be published. Required fields are marked *