Message Text |
What do i need to insert or change in vbulletin.php to use diferent databases one databse for wsnlinks and the other for vbulletin where the users will be.
WSNLinks database name is : links
VBulletin database: forum
Can someone help ]
<?php
// vBulletin member integration hack for WSN
// Tested on vBulletin 3.00 beta 4-6
$memberstable = 'user';
$newid = 'userid';
$newname = 'username';
$newusergroup = 'usergroupid';
$newtime = 'joindate';
$newip = 'ipaddress';
$newsignature = 'usertextfield.signature';
$otherencoder = 'yes'; // use md5 by default. if other, write it up in encode.php
$admingroup = '6';
// Note: group listed above should be the administrative usergroup. If not, change the line above.
// Be sure you do not use the wrong group id, or members may be able to use your admin panel.
$idcookiename = '';
$passwordcookiename = '';
// fill in the name of the cookie that holds the member id and password, if possible.
$cookietype = ''; // if user cookie is array, fill in 'array'
// The below options only apply if the cookie type is 'array'
$idindex = ''; // index of cookie that gives the id
$passwordindex = ''; // index of cookie that gives the password
$cookieidtype = ''; // if the cookie id is actually a username, put 'name' here
?> |