Use the following MySQL query to fetch a list of your staff users:
select title,fullname,username from swstaff sw join swstaffgroup sg on (sw.staffgroupid=sg.staffgroupid);
Identify the username of the staff user you will reset the password of, then tailor this second MySQL query:
update swstaff set staffpassword=sha1('qwerty012!@#') where username='admin';
This will reset the password of the 'admin' staff user to 'qwerty012!@#'.
No comments:
Post a Comment
Hi, Leave a comment here and one of the binary piper's will reply soon :)