I've reached a sticking point - I think I've found the section in the members.php file which creates the session entry in the db session table so I've added the following code as a test to send an email but it doesn't seem to do anything (ie I never get an email). Here's the code with my additional code at the end (I haven't included the full original code).
Really appreciate any pointers:
Bob
// ############################### start login ###############################
if ($action=="login") {
$templatesused = 'redirect_login,error_wrongpassword,error_wronguse rname';
include("./global.php");
$userid = 0;
if (isset($username)) {
// get userid for given username
if ($user=$DB_site->query_first("SELECT userid,username,password,cookieuser FROM user WHERE username='".addslashes(htmlspecialchars($username) )."'")) {
if ($user['password']!=md5($password)) { // check password
eval("standarderror(\"".gettemplate("error_wrongpa ssword")."\");");
exit;
}
$userid=$user[userid];
} else { // invalid username entered
eval("standarderror(\"".gettemplate("error_wrongus ername")."\");");
exit;
}
if ($user['cookieuser']==1) {
vbsetcookie("bbuserid",$user['userid']);
vbsetcookie("bbpassword",$user['password']);
}
$DB_site->query("DELETE FROM session WHERE sessionhash='".addslashes($session[dbsessionhash])."'");
$session['sessionhash']=md5(uniqid(microtime()));
$session['dbsessionhash']=$session['sessionhash'];
$DB_site->query("INSERT INTO session (sessionhash,userid,host,useragent,lastactivity,st yleid) VALUES ('".addslashes($session['sessionhash'])."','".intval($userid)."','".addslashes($sessio n['host'])."','".addslashes($session['useragent'])."','".time()."','$session[styleid]')");
vbsetcookie("sessionhash",$session['sessionhash'],0);
$username = $user['username'];
}
// ########################### hack to email if certain user come online #################
vbmail("bob@bob.com","VBTest","Online");
|