Bug #15111
closedFE User Auth - disableIPlock missing
0%
Description
If a FE-user logs in TYPO3 saves the first two parts of the IP (e.g. 123.45 from 123.45.67.89) in the session-variable.
If in the same session (saved by a cookie) a request arrives from another IP the user will not be authenticated.
This regards to all call-by-call-users or users with providers which change the IP with every new internet-connection.
Solution:
in phpMyAdmin execute this:
ALTER TABLE `fe_users` ADD `disableIPlock` INT DEFAULT '1' NOT NULL ;
If this flag is set TYPO3 saves the string '[DISABLED]' in fe_sessions.sys_iplock and spares the check.
be_users.disableIPLock exists by default, fe_users.disableIPLock is missing
(issue imported from #M1674)
Updated by Mathias Schreiber about 19 years ago
Should be done quick.
Involved Changes are:
fe_users Table
fe_users TCA definition.
This could also be done with an extension but I think it belongs into the core.
A smart idea might be to have a typoscript value within the config section where you can set this option on a TS basis.
Updated by René Fritz almost 19 years ago
Have a look at
$TYPO3_CONF_VARS['BE']['lockIP']
Does that solve your problem?
Updated by Sebastian Kurfuerst almost 19 years ago
I set the status to "feedback", as we need to have some from kj187.
Greets, Sebastian