Actions
Bug #14626
closed$TYPO3_CONF_VARS['BE']['lockIP'] < 4 prevents use of 'View' module
Start date:
2005-03-23
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.8.0beta2
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Setting $TYPO3_CONF_VARS['BE']['lockIP'] to a value smaller than 4 in localconf.php logs the backend user out as soon as he/she views the website.
The bug is in typo3/sysext/cms/tslib/index_ts.php.
The section titled BE_USER does not honor the lockIP setting.
Remedy:
line 179 should read as follows:
$BE_USER->lockIP = $TYPO3_CONF_VARS['BE']['lockIP'];
(issue imported from #M911)
Files
Updated by old_akio over 19 years ago
Sorry, what I was meaning was
line 179 should be prepended by:
$BE_USER->lockIP = $TYPO3_CONF_VARS['BE']['lockIP'];
Updated by Rupert Germann over 19 years ago
the descibed error also appears on my installations (3.7.0 & 3.8.0 dev).
After adding the suggested line to index_ts.php it works again.
I attached a file with the patch (against 3.8.0dev)
Actions