Wordpress forgot the password processing methods _ related skills

Source: Internet
Author: User
Tags md5 wordpress database
1. WordPress Password in the database is stored in the form of MD5 code
Based on this principle, you can manually update the database and reset the custom password
2. Modify wordpress password by executing MySQL statement
Using tools such as phpMyAdmin, log in to your database administration and execute the following statement:
Update wp_uo2kml_users Set Password=password ("New password") where user= ' username ';
You can update your wordpress password.
3. Modify wordpress password via PHP file
Create a new pwd.php file and add it here:
echo MD5 (' your password ');
Upload to the host root directory, execute http://your domain/pwd.php, and then connect to your database for execution.
Update wp_uo2kml_users set user_pass= ' executes pwd.php displayed string ' where user_login= ' admin ';
OK, now you can enter the administrator account with the password you have set.
Note: Wp_uo2kml_users is the user management table in the WordPress database

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.