Showing posts with label Random Alpha Numeric Strings. Show all posts
Showing posts with label Random Alpha Numeric Strings. Show all posts

Wednesday, January 5, 2022

Reset WordPress Admin Password via MySQL Command Line

mysql -umyUserName -paVeryStrongPassword show databases;   use myWordpressDB; SELECT ID, user_login, user_pass FROM wp_users; UPDATE wp_user...