Page 4 of 4 FirstFirst ... 234
Results 31 to 33 of 33
  1. #31
    Join Date
    Oct 2007
    Posts
    75
    Plugin Contributions
    0

    Default

    I got it cleared. Thanks a ton for your help.:-):-):-):-):-):-)
    Quote Originally Posted by SHokuf View Post
    I used this page: http://tutorials.zen-cart.com/index.php?article=2

    And got the admin to login.
    Posted via Mobile Device

  2. #32
    Join Date
    Aug 2008
    Posts
    1
    Plugin Contributions
    0

    Default Password never arrives! Please help!!!!

    when it asked to reset password, I enter email address and it says it has sent the new password, but it never arrives. Any help to find this file to change it manually??? HELP :)
    Kathy

  3. #33
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,883
    Plugin Contributions
    6

    Default Re: Admin USer & Password no loner work.

    You could reset your admin table in the database via phpMyAdmin using:
    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;
    Code:
    INSERT INTO admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
    This will set an account for you with theL
    Login: Admin
    Password: admin

    NOTE: be sure to change these settings in the Tools ... Admin Settings ...

    WARNING: This deletes ALL records in the admin table first and then adds a clean record ...
    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: v1.5.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

 

 
Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. Admin Password
    By telepatico in forum Installing on a Windows Server
    Replies: 6
    Last Post: 30 Dec 2006, 05:46 PM
  2. moved folders, now admin doesn't work
    By icklebits in forum General Questions
    Replies: 6
    Last Post: 27 Dec 2006, 06:47 PM
  3. Question about changing the admin password
    By dbrewster in forum General Questions
    Replies: 3
    Last Post: 17 Aug 2006, 05:47 PM
  4. Password for admin, view cart problem or other solution???
    By keewong in forum General Questions
    Replies: 1
    Last Post: 7 Aug 2006, 04:02 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •