Go to your phpMyAdmin ... should be able to get to that through your website Control Panel if you do not know how to do that ...
Find your database ...
Click on the admin table ...
Click on browse ...
You should see 1 to many rows of Admin logins ...
1 of those rows should contain your admin_name and admin_email ...
Do you see more than 1 row with your admin_name and admin_email?
Note: these are case sensative
Or ... if the worse case has happened ... you can totally rebuild your admin table and paste this into the SQL of phpMyAdmin:
PHP 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;
INSERT INTO admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Your new login is:
Admin
admin
Again ... this is case sensative ...
When you get in, immediately change the email address and password to your own ...