Andrew,
Wow, and THANK YOU! I was just doing a little research and was reminded of the UPDATE command for mysql. I was *this* close to a solution so that makes me feel good! You confirmed what I was afraid to try. I have several user groups a few of which will be easy to test this on. Then I can go back to the ones that matter most. So, if you have another minute, I just want to clarify. That bit of code, and I’ll probably do this in Phpmyadmin, it wiill reset all passwords for the group id selected to the word password although it will be encrypted. Correct?
Okay, I am off to test this and really thanks for your help. I will get back online after I do this and let you know how it goes and also to hit you paypal button!
Carole
Andrew Weaver - 24 April 2010 06:32 PM
Hi Carole,
Firstly, make a backup of the database.
The quickest solution would be to go to:
Admin > Utilities > SQL Manager and click on the “Database Query Form” link.
Check the “Enable MySQL Error Output” checkbox and put:
UPDATE exp_members SET password = MD5("password") WHERE group_id = 5
in the textarea.
This will give all members in the default “Members” group the password “password” (unless you have made any changes to the Member groups).
If you need something more complex, or would like me to make the changes for you, email me, and I’ll take a look.
Andrew