Written by:David Aldridge5/12/2011 4:06 PM
If you have direct access to the database then you can do this using the following update query:
update users set user_hash=MD5('new-password') where id<>1;
This updates all users except the admins to new-password.
0 comment(s) so far...