Snippets → WordPress → Reset Admin Password Through Database Reset Admin Password Through Database Chris Coyier on Oct 30, 2010 You’ll need to be able to run SQL on that database, like for example, through phpMyAdmin. UPDATE `wp_users` SET `user_pass` = MD5( 'new_password_here' ) WHERE `wp_users`.`user_login` = "admin_username";