Bug #14836
closedSession-Lifetime for BE-User and FE-User doesnt work in FE
0%
Description
The new Lifetime/SessionTimeout for FE-User and BE-User doesnt work in Frontend (as it does in the Backend).
There are missing the following lines in the Source (possible fix):
/index.php (BE-User Initialisation):
$BE_USER->auth_timeout_field = intval($TYPO3_CONF_VARS['BE']['sessionTimeout']);
/tslib/class.tslib_fe.php (function initFEuser):
$this->fe_user->auth_timeout_field = intval($this->TYPO3_CONF_VARS['FE']['lifetime']);
(issue imported from #M1233)
Updated by Franz Holzinger almost 19 years ago
With the latest CVS Core from 19.1.2006 I get a timeout after 1 or 2 minutes from the backend.
However I have set it to
[BE][sessionTimeout] = 12000
Updated by Christian Kuhn about 15 years ago
Fixed, unable to reproduce in recent versions:
This definatly works in 4.2.8:
The proposed fix in tslib_fe is actually in class tslib_feUserAuth, method start:
$this->auth_timeout_field = $this->lifetime;