:: What is WordPress
WordPress is a free and open source blogging tool and content management system (CMS) powered by PHP and MySQL. – WikiPedia
:: How to reset password user admin on wordpress using mysql cli
|
0 1 2 3 |
mysql > use db_name; > select id,user_login,user_pass from wp_users; > update wp_users set user_pass=MD5('NEW_PASSWORD') where id=ID_ADMIN_USER; |
:: Checking / testing
Login to WP Admin: http://yourdomainame/wp-login.php
:: Links
+ Google
