
$user->setVar('pass', md5($liste[3]));
to:
$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.
$user->setVar('pass', md5($liste[3]));
$user->setVar('pass', '');
default_charset = "utf-8"
alain01 wrote:
...
I missed something ?
DELETE FROM groups_users_link WHERE uid = uid-to-remove
INSERT INTO groups_users_link(groupid, uid) VALUES ([special-group-id],[uid-to-remove])
"groups_users_link" dead entries. Problem?, how remove?
DELETE FROM `xxxx_groups_users_link` WHERE `uid` NOT IN (SELECT `uid` from `xxxx_users`);