Hello guys,
I have used the following code to log users in automatically in the forum.
PHP Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| Created by Jp ||
|| #################################################################### ||
\*======================================================================*/
session_start();
$myname = $_SESSION["frontenduser_username"];
if (isset($_GET['bd']))
{
define('THIS_SCRIPT', 'login');
require_once('./global.php');
require_once('./includes/functions_login.php');
$myname = $_SESSION["frontenduser_username"];
$vbulletin->userinfo = $vbulletin->db->query_first("SELECT userid,usergroupid, membergroupids, infractiongroupids, username, password, salt FROM " . TABLE_PREFIX . "user WHERE username = $myname");
if (!$vbulletin->userinfo['userid']) die("Invalid username!");
else
{
vbsetcookie('userid', $vbulletin->userinfo['userid'], true, true, true);
vbsetcookie('password', md5($vbulletin->userinfo['password'] . COOKIE_SALT), true, true, true);
exec_unstrike_user($_GET['bd']);
process_new_login('cplogin', TRUE, TRUE);
do_login_redirect();
}
}
?>
When i follow the link directly it works fine:
http://clubmonza.co.uk/forums/test.php?bd
BUT if i got via the main website and click on
http://clubmonza.co.uk and click on club lounge... it does not seem to work.
(i have made it so it always logs into mart34 so no need to log in atm)
Any ideas guys?
Regards,
Jarratt