Reset WordPress Admin password
Before we begin with the steps for changing admin password of WordPress lets take in brief regarding WordPress. WordPress is an open source supportive community that works most of the for blogging tool with rice set of opportunities for making blogs of a personal. If you’re planing to possess your own web site then the most effective alternative for a blog application would be WordPress. WordPress has an intuitive administration interface that is simple to handle and to compose a post and publish it on your web site wants and it needs only few step with WordPress surroundings. WordPress offers a simple to install customizable options referred to as wordPress themes that are available on the web for free of cost.
Now lets see the way to reset WordPress admin password?
The most Simple and convenient way to change your Admin password is through the database via phpMyAdmin tool at your hosting account for that Go through the WordPress database directly. Once you get entered in phpMyAdmin then choose the WordPress database from the drop-down menu. Open the SQL tab from the top navigation bar and where you will find different tables.
Write the following SQL query to Update Password of Admin:
UPDATE `wp_users` SET `user_pass` = MD5( ‘Please enter new password’ ) WHERE `wp_users`.`user_login` = “Newadmin_UserName”;
Please enter new password – Write the new password you wish to use and replace it with the existing password.
Newadmin_UserName – Replace this with the New UserName the password.
Please submit the query by hitting the Go button. If everything goes correct then you should be able to login to WordPress with the new UseName and password.