wordpress




login-pass
Change wordpress password in MySQL Yes!! we can change password of worpress login directly on MySQL. Login to control panel and launch PHPMyAdmin. Go to SQL or MySQL section in your PHPMyAdmin. Now, enter the below given query: UPDATE `wp_users` SET `user_pass`= MD5('mypasswd') WHERE `user_login`='myuser'; Note: table name is given […]

Change wordpress password in MySQL