traxxadd |
06-20-2008 08:25 PM |
Also when i was configuring the login files for the forum i was getting an error-in your read me file you had this
PHP Code:
if ($vbulletin->session->created == true AND $vbulletin->session->vars['userid'] == 0)
{
// if we just created a session on this page, there's no reason not to use it
$newsession =& $vbulletin->session;
}
else
{
$newsession =& new vB_Session($vbulletin, '', $vbulletin->userinfo['userid'], '', $vbulletin->session->vars['styleid']);
}
and after the code i placed
PHP Code:
$cnd_login = Get_CND_Login($vbulletin->userinfo['userid']);
So i checked to make sure i could log in and out but i kept getting an error so i removed that line of code and everything worked fine. The only thing is now if you log in on the forums it doesnt log you in on the C&D file.....What do you suggest
|