Quote:
Originally Posted by ForceHSS
|
these are great thanks!!!!!!!!
--------------- Added [DATE]1449706402[/DATE] at [TIME]1449706402[/TIME] ---------------
Quote:
Originally Posted by Dragonsys
run a sql query
Code:
UPDATE user SET password = '12345' WHERE password != '';
since the passwords are hashed this will set an unkown password, which will not allow the user to login, they will have to perform a password reset using the Forgot Password link. If you want to exclude your account, the use this instead
Code:
UPDATE user SET password = '12345' WHERE userid != {whatever your id is};
|
thanks that helped