Ver:1.9.16 (Moka pot)
Hello. Does any know how or where is the way to disable the lost password option in the login.php.
Thank you.
[NOT AN ISSUE] Disable "Lost password" on login
Moderators: Amaradana, TurboPT, TL Developers
-
- TestLink user
- Posts: 3
- Joined: Sun Oct 22, 2017 9:40 am
Re: [NOT AN ISSUE] Disable "Lost password" on login
I had this same question, turns out if you change:
$tlCfg->authentication['domain'] = array('DB' => array('description' => 'DB', 'allowPasswordManagement' => true) ,
to
$tlCfg->authentication['domain'] = array('DB' => array('description' => 'DB', 'allowPasswordManagement' => false) ,
$tlCfg->authentication['domain'] = array('DB' => array('description' => 'DB', 'allowPasswordManagement' => true) ,
to
$tlCfg->authentication['domain'] = array('DB' => array('description' => 'DB', 'allowPasswordManagement' => false) ,
-
- TestLink user
- Posts: 3
- Joined: Sun Oct 22, 2017 9:40 am
Re: [NOT AN ISSUE] Disable "Lost password" on login
Well I can't figure out how to edit my post. Anyway, this issue was resolved by changing 'DB', 'allowPasswordManagement' to false.
..j
..j
Re: [NOT AN ISSUE] Disable "Lost password" on login
Thank you . we will try that.
Re: [NOT AN ISSUE] Disable "Lost password" on login
It works perfect! thank you jhenderson!!!