To reset the Admin password on your site ...
In phpMyAdmin you could rebuild the admin table in your database so that you have the default login and password ...
If you do not use a prefix on your database tables, as in the admin table is called: admin
you can then use:
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;
and
INSERT INTO admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
If you use a prefix on your database tables, such as zen_ you could use:
Code:
DROP TABLE IF EXISTS zen_admin;
CREATE TABLE zen_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;
and
INSERT INTO zen_admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
Now try to login to your Admin with:
Login: Admin
password: admin
Once in, you want to edit the Login to be your own with your own password and email address in the Tools ... Admin Settings ...
NOTE: make sure that you are using the correct database that is referenced in both the:
/includes/configure.php
/admin/includes/configure.php
NOTE: make sure both of those are referencing the same server and database as well ...