Reset WordPress password in sql way
Method 1:
- Enter your password here and generate the encrypted parse.
http://www.miraclesalad.com/webtools/md5.php - Replace it in your database. It will be encrypted with Wordpress Hashing algorithm after you login.
Method 2:
UPDATE wp_users SET user_pass = MD5('password') WHERE wp_users.user_login ='admin' LIMIT 1;