WordPress forget the five kinds of solutions passwords

Wordpress accidentally forget the password, as it happens was not any time to set up a mail in the background, had searched four solutions, but fortunately finally found ...... 1. WordPress password plus a built-in method to find if your admin account e-mail address is correct, then in accordance with the ordinary password recovery procedure in Wordpress login page and click "Forgot password?" and enter the admin or e-mail address. then, you will receive a password to restart the message, click on the link inside the restart. later you will receive an email containing a username and password. this password recovery of Buju with all Wordpress users are the same. in addition we have four methods described below, it means you may not modify the admin account electronic E-mail, you will not be able to accept the password. 2. by executing Mysql statement to modify Wordpress password using the tools Phpmyadmin like, login to your database management, execute the following statement: "update user set password = password (" new password ") where user = 'username'; "you can update your Wordpress password. 3. Change the password by Wordpress PHP file to create a new pwd.ph p file and added: echo md5 ( 'your password'); uploaded to the host root directory, execute http: // your domain name /pwd.php, then connect to your database to perform update wp_users set user_pass. = 'string executed pwd.php shows' where user_login = 'admin'; OK, now can set their own password to enter the administrator account. 4. recover your password via password-resetter file download: password-resetter use:
  1. The password-resetter.zip decompression;
  2. Upload password-resetter.php to WordPress root directory (Note:! This is not a WordPress Plugin)
  3. Run http: // your domain name /password-resetter.php
  4. In the Set admin password: Enter your administrator password to be reset back! Then submit query on it
  5. Remember when retrieve your password, delete the password-resetter.php on the server (or will be used by others)
5. Wordpress by modifying the password MD5 value back WorePress after installation are automatically given a password, I have been automatic landing, so after a month actually forgotten the password. WP using MD5 save your password, so the password is not reversible. Think of the background can use the database, you can recover your password via the database, landing phpmyadmin, and then figure, after landing the first step is to select the database with phpmyadmin general virtual host modifications MD5 password is:.. "5d41402abc4b2a76b9719d911017c592" and then return to WordPress landing page, using the password "hello" landing. Compare, if your e-mail settings are correct, of course, the first method is the most convenient. If you have control of the database, that fifth method is most convenient. If you can not control the database, then 4 a little more convenient ways.

Reproduced in: https: //my.oschina.net/766/blog/210880

Guess you like

Origin blog.csdn.net/weixin_34037173/article/details/91546130