| Re: force changing password after importing user ? |
| by mjoel on 2021/7/27 6:56:18 thanks geekwright, wish someday xoops will have this incorporated in the core |
| Re: force changing password after importing user ? |
| by geekwright on 2021/7/25 3:33:13 A quick and dirty solution would be to change this line: le="color: #000000"><?php $user->setVar('pass', md5($liste[3])); to: le="color: #000000"><?php $user->setVar('pass', ''); The 'pass' column will not correspond to any possible password, so the only way to log in will be going through the forgot password logic to reset it. |
| force changing password after importing user ? |
| by mjoel on 2021/7/24 2:56:25 Hi i saw this script on github.. Quick and dirty XOOPS user import from csv file by geekwright https://gist.github.com/geekwright/3cc71647bdfd035e609c3a045fc6db41 how do i force the user to change their password for first time login in XOOPS ? |