Wordpress Password Hash Generator
Well, wordpress is very popular CMS (Content Management System), and in order to ease developer to add new admin to the wordpress, there are several ways, these I list 2 ways of generating password.
https://www.useotools.com/wordpress-password-hash-generator
On that tool, there will be a step how to setup the password onto the database of your environment.Directly on database
To update the database directly via mysql, you need to useMD5
function onuser_pass
column.
So here are the full query :
update wp_users set user_pass = MD5('YourPassword') where user_login = 'fiko';
If you find another ways, please feel free to comment.
Â