i am already logged in, does the rest password option under admin settings provide a new password?
Also I'm interested in the different different user accounts for different levels of access, do you have any more info on this?
Many thanks
Elliot
i am already logged in, does the rest password option under admin settings provide a new password?
Also I'm interested in the different different user accounts for different levels of access, do you have any more info on this?
Many thanks
Elliot
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Thanks!
I can't login to the admin. I did that crap about changing it in SQL but it still does not work. What the hell? It also will not email me the new password. So far all of the info I have found in this forum has not helped at all. . .
Can anyone offer a simple solution?
Gosh it is a pleasure to talk to you too!
Has your login ever worked?
Are you using database prefixes? As in is the table name admin or something_admin in your database?
I would look at your two configure.php files:
/includes/configure.php
/admin/includes/configure.php
and make sure that you have the same paths, database and username and password set for these ...
Go to phpMyAdmin for your site and locate your database and reset it to the defaults:
First run this to remove and reset the structure:
Next run this to set the login to Admin admin: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;
WARNING: be sure to reset the Admin login as soon as you have access for the Admin password and email address ...Code:INSERT INTO admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
NOTE: if you are using prefixes on your database tables, as in your database table for admin reads: something_admin
then you will need to adjust the information above to address the proper database table name ...
Do have a nice day ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!