If you changed the password in the:
/admin/includes/configure.php
file incorrectly, there is the file:
/includes/configure.php
with the same information that you can refer to ...
The issue I was referring to was to reset the Admin password in the database to the default login and password ...
If you are the only one who logs into the Admin, then you can redo this by rebuilding the admin table in your database with phpMyAdmin that you should be able to access with your Control Panel for your server using in the SQL the following ...
This will remove and rebuild the admin table in your database:
Code:
DROP TABLE IF EXISTS admin;
CREATE TABLE admin (
admin_id int(11) NOT NULL auto_increment,
admin_name varchar(32) NOT NULL default '',
admin_email varchar(96) NOT NULL default '',
admin_pass varchar(40) NOT NULL default '',
admin_level tinyint(1) NOT NULL default '1',
PRIMARY KEY (admin_id),
KEY idx_admin_name_zen (admin_name),
KEY idx_admin_email_zen (admin_email)
) TYPE=MyISAM;
This will add a new Admin login where you can use
Login: Admin
Password: admin
Code:
INSERT INTO admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
You will then want to login and go to the Tools ... Admin Settings ... and edit to change the Login and email and then reset the password ...