How would I go about changing a WordPress user’s password directly in the database? I notice it’s not just an md5’d password. There is a $P$B at the start
Thanks,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since v2.5, WordPress has used
phpassovermd5()for storing hashed passwords in the DB.However, I think you can still reset your password in MySQL with a standard MD5 hash. Once you’ve logged in again, WordPress will ‘upgrade’ the stored hash with the new algorithm.