MyBB Community Forums

Full Version: How to change my Password using Phpmyadmin ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Guys,

Some one hacked my forum and change my pass.Now i want to know how to change my pass thorugh the SQL querry,,
Exclamation
PLease help !!
Running the following query will set the password to test
UPDATE mybb_users SET password = '098f6bcd4621d373cade4e832627b4f6', salt = '' WHERE uid = '1'; 
Notes:
- Change mybb_ to whatever prefix you use on your board if different from the default
- Change the uid to the uid of your user that you want to reset the password of

This is the password : 098f6bcd4621d373cade4e832627b4f6 ???
(2010-09-29, 10:12 AM)- G33K - Wrote: [ -> ]Running the following query will set the password to test

Ok..Thanks !!!