
Originally Posted by
mc12345678
What was the SQL used to reset the password (specific SQL statement)?
What result(s) were presented when using it?
What is the value of DB_PREFIX (define('DB_PREFIX',?);) in your admin/includes/configure.php?
As the instruction states (twice) the username is: Admin, the password is all lowercase.
Start there first.
I used this to create the Admin user:
Code:
DELETE FROM admin WHERE admin_name = 'Admin';
INSERT INTO admin (admin_name, admin_email, admin_pass, admin_level)
VALUES ('Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
I checked the database and the user details were there. All that happens when I try to log in is that the page refreshes and says the login details are wrong.
The configure.php file says this: define('DB_PREFIX', '');