Showing posts with label mod security. Show all posts
Showing posts with label mod security. Show all posts

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...