Ok, I'm at wit's end with Wordpress. This is the fifth time I've tried installing it and it flat out is not working.
When I install it, it shows one of the themes, but the default welcome post doesn't show up and when I log in it won't let me with the username and password I set up. Am I doing something wrong?
The wp-config file is edited to match the db settings.
I'm getting very frustrated. I login with admin and my password and it says "error: invalid username".
How can it be invalid when I left it at the default which was the admin. What do I do now? I'm completely stumped.
No, I don't have a dedicated host or domain so I'm trying locally with xampp. and the username - password is not case-sensitive even the first letter of the username is not capitalized.
I have tried different test cases also like clear site cookies, cache, renaming plugin directory and theme directory one by one.
define('WP_DEBUG', true);
define('WP_ALLOW_REPAIR', true);
define('DB_NAME', 'WP');
/** MySQL database username */
define('DB_USER', 'root');
/** MySQL database password */
define('DB_PASSWORD', '');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
suggest me something plese.
Ok, I'm at wit's end with Wordpress. This is the fifth time I've tried installing it and it flat out is not working.
When I install it, it shows one of the themes, but the default welcome post doesn't show up and when I log in it won't let me with the username and password I set up. Am I doing something wrong?
The wp-config file is edited to match the db settings.
I'm getting very frustrated. I login with admin and my password and it says "error: invalid username".
How can it be invalid when I left it at the default which was the admin. What do I do now? I'm completely stumped.
No, I don't have a dedicated host or domain so I'm trying locally with xampp. and the username - password is not case-sensitive even the first letter of the username is not capitalized.
I have tried different test cases also like clear site cookies, cache, renaming plugin directory and theme directory one by one.
define('WP_DEBUG', true);
define('WP_ALLOW_REPAIR', true);
define('DB_NAME', 'WP');
/** MySQL database username */
define('DB_USER', 'root');
/** MySQL database password */
define('DB_PASSWORD', '');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
suggest me something plese.
If your database connection is wrong you will get an error says
Error establishing database connection
so if you seeing login form your connection is fine and wp-config has nothing to do in your issue.
If you don't remeber what's your credentials are, go to your database manager like phpMyAdmin
and look for _users
table and take a look what accounts are in your Wordpress installation. If you don't remember your password there is simple way to recover it from database. Edit selected user and type new password in the password
column and set type field to MD5
. Then your password will be pre-reset. When you'll try log in with your new credentials Wordpress will hash new password.
Try this:
These steps explain how to change the password in the database.
Note: In my example the table prefix is "wp_" The prefix varies from site to site so don't worry if yours is different.
Hope this helps solving it. If you want to debug it more deeper, let me know in comments and I will be happy to solve any other queries you have.
Okay, let me tell you to step by step and screen after screen:
So after filling the WordPress credentials where I put admin for both username and password for simplicity and then I pressed install.
Next Screen: Blank with WordPress logo only.
Or if I tried to refresh the page then I got another screen with the following, message:
"ALREADY INSTALLED You appear to have already installed WordPress. To install please clear old database first. login in - button present"
And when I tried to log in with same credentials, it raises an "invalid user" error.
Or if I chose "Lost your password" option then it raises "There is no user registered with that email address".
To fixed this issue, I dropped the database that I had created inside the phpmyadmin control panel and create another and set up again the credential details needed to login in the WordPress.
Any Suggestions, how could i resolve this problem, thanks?
If you're receiving an error message stating that your WordPress credentials are not matched, it means that the username and/or password you're using to access your WordPress site are not recognized by the system.
This could be caused by a variety of reasons, such as:
You're entering the wrong username or password: Make sure you're entering the correct login credentials for your WordPress site.
Incorrect WordPress URL: Ensure that you're trying to access the correct WordPress URL. Sometimes, people accidentally try to log into the wrong website.
Database connection error: Your WordPress site could be experiencing issues with its database connection, preventing it from validating your login credentials. This could be due to a database corruption or misconfiguration.
Login details not saved properly: It's possible that the login credentials you're using were not saved correctly in your browser or password manager.
To troubleshoot this issue, try resetting your WordPress password or double-checking your login details. If the problem persists, you may need to contact your hosting provider or WordPress support for further assistance.