I tried clicking the button to resend the password but the email is never sent. How can I reset the password. I see in the database it is encrypted. Is there some way to enter a new password and encrypt it through phpMyAdmin?
I tried clicking the button to resend the password but the email is never sent. How can I reset the password. I see in the database it is encrypted. Is there some way to enter a new password and encrypt it through phpMyAdmin?
The following will set
user = Admin
pass = admin
Check your tables for a prefix and alter this is you have one
SQL
SQL PrefixCode: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);
Code:DELETE FROM prefix_admin WHERE admin_name = 'Admin'; INSERT INTO prefix_admin (admin_name, admin_email, admin_pass, admin_level) VALUES ('Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Zen-Venom Get Bitten
Yes. Thank you. Is that an MD5?
Not exactlyIs that an MD5?
Zen-Venom Get Bitten