try to fix random logouts
This commit is contained in:
parent
6f78d4785c
commit
b3cc05c41d
@ -11,7 +11,11 @@ $session_expire = 180000;
|
|||||||
|
|
||||||
function new_cookie($time) {
|
function new_cookie($time) {
|
||||||
$old_sid = session_id();
|
$old_sid = session_id();
|
||||||
session_set_cookie_params("$time");
|
|
||||||
|
// ??? This shouldn't have any effect if called after session_start()
|
||||||
|
// We probably need to set the session expiration and change the PHPSESSID cookie.
|
||||||
|
|
||||||
|
session_set_cookie_params($time);
|
||||||
session_regenerate_id(false);
|
session_regenerate_id(false);
|
||||||
|
|
||||||
q("UPDATE session SET sid = '%s' WHERE sid = '%s'", dbesc(session_id()), dbesc($old_sid));
|
q("UPDATE session SET sid = '%s' WHERE sid = '%s'", dbesc(session_id()), dbesc($old_sid));
|
||||||
|
@ -60,7 +60,7 @@ if(! $a->install) {
|
|||||||
if(intval($a->config['system']['ssl_cookie_protection'])) {
|
if(intval($a->config['system']['ssl_cookie_protection'])) {
|
||||||
$arr = session_get_cookie_params();
|
$arr = session_get_cookie_params();
|
||||||
session_set_cookie_params(
|
session_set_cookie_params(
|
||||||
((isset($arr['lifetime'])) ? $arr['lifetime'] : 60*5),
|
((isset($arr['lifetime'])) ? $arr['lifetime'] : 0),
|
||||||
((isset($arr['path'])) ? $arr['path'] : '/'),
|
((isset($arr['path'])) ? $arr['path'] : '/'),
|
||||||
((isset($arr['domain'])) ? $arr['domain'] : $a->get_hostname()),
|
((isset($arr['domain'])) ? $arr['domain'] : $a->get_hostname()),
|
||||||
((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false),
|
((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') ? true : false),
|
||||||
|
@ -1 +1 @@
|
|||||||
2014-05-11.672
|
2014-05-12.673
|
||||||
|
Reference in New Issue
Block a user