I installed my WP but can’t remember my credentials. I tried to send the link for resetting pass but it does not work. It states invalid key.
are there any default username and password?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
You can easily recover your WordPress password by accessing the admin area login page and click the “Lost your password?” link. You can then enter either your Username or Email Address to receive the new password.
The other option is the reset the password from the WordPress database directly. You can check the following mini-tutorial on how to do this here:
Hope that this helps Regards, Alex
The “invalid key” error is indicative of some sort of cache/cookies issue. Try clearing them to see if it helps resolve your problem.
If that doesn’t work, your only choice is to reset it in the MySQL database. You can do it in PHPMyAdmin, just make sure the password is MD5’d before submitting it.
You can also do it in the MySQL command line, if you don’t have PHPMyAdmin installed.
This link will cover both of those options: http://codex.wordpress.org/Resetting_Your_Password#Through_MySQL_Command_Line
If you have WP CLI installed, you can use this: http://wp-cli.org/commands/user/update/
do you have access to the database (via phpmyadmin)
if so, you can go to the wp-users table, find your user, and change the password to:
81dc9bdb52d04dc20036dbd8313ed055
your password will then be 1234
That will get you into wordpress and you can update your password to something better.