|
How to change the login and password for administrator? |
Top Previous Next |
|
You can enter your PHPmyAdmin console and run the following command to change admin's login and password:
UPDATE `administrator` SET `username` = 'a_desired_login', `password`=PASSWORD('a_desired_password');
|