Hi,
I have got some code which logs the users into the site when they sign into my site. This functionality is achieved by using the verify_authentication function as follows:
Code:
/*! start the session */
session_start();
define('VB_AREA','Forum');
require('includes/functions_login.php');
require('includes/init.php');
/*! get the signed in member's details*/
$member = getMemberDetails($_SESSION['valid_id']);
/*! Log the user into the Vbulletin forums */
verify_authentication($_SESSION['valid_alias'], "", $member['password'], "", true, true);
/*! Redirect to another page*/
The above works perfectly and logs the user into the forums. However If the user closes the browser without logging out they can re-open the browser and they are stilled logged into the forums. I am guessing this has got something to do with the "Remember Me" option is there anyway to turns this off so that when they login and they close their browser they have to re-login to access the forums.
Have any body got any ideas?
Thanks