Fixing the Admin login and password is the same regardless of version ...
Assuming that you are not using prefixes on your database tables, peek in your /includes/configure.php on the server to check, you can fix the admin table with the following commands in phpMyAdmin ...
Find the database that matches your /includes/configure.php file on the server and run these in the SQL ...
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)
) TYPE=MyISAM;
Code:
INSERT INTO admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Your login is:
Admin
Your password is:
admin
these are case sensative ...
Close your browser, clear the cache, open a clean browser session ...
Login then go to Tools ... Admin Settings ... and reset your password and email address to the correct information ...