Results 1 to 8 of 8
  1. #1
    Join Date
    Apr 2006
    Posts
    80
    Plugin Contributions
    0

    Default Admin password not working

    I tried resending the password to my email address but the one that was generated doesn't work.

    I know the password in the database uses md5:salt format. Anyone have a generic password I could enter into my database so I can login and troubleshoot my problem?

    Somelike -

    userid: Admin
    password: admin

    would work

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Admin password not working

    Do a few searches on Admin Password on the forum and in the Wiki ... there are several threads for doing just that ...

    Question is ... how the heck did you bust that? Betcha the typo monster gotcha ...
    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!

  3. #3
    Join Date
    Jan 2004
    Posts
    66,450
    Plugin Contributions
    81

    Default Re: Admin password not working

    .
    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.

  4. #4
    Join Date
    Apr 2006
    Posts
    80
    Plugin Contributions
    0

    Default Re: Admin password not working

    Not only is it busted but the fix suggested did work either! I haven't upgraded to v1.3.0.2 yet, do you think that might help?

  5. #5
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Admin password not working

    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(11NOT NULL auto_increment,
      
    admin_name varchar(32NOT NULL default '',
      
    admin_email varchar(96NOT NULL default '',
      
    admin_pass varchar(40NOT NULL default '',
      
    admin_level tinyint(1NOT 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 ...
    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!

  6. #6
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Admin password not working

    Note: after you are all fixed up ... upgrade to v1.3.0.2 ... you need a valid admin login to upgrade ...
    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!

  7. #7
    Join Date
    Apr 2006
    Posts
    80
    Plugin Contributions
    0

    Default Re: Admin password not working

    Thanks Ajeh. I am not even gonna try to figure out what happened!
    I rebuilt the admin table and I upgraded - everything is working fine.
    Shelia

  8. #8
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Admin password not working

    Thanks for the update ...
    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!

 

 

Similar Threads

  1. v151 Forgot password not working in admin PLEASE HELP
    By Dashizna in forum General Questions
    Replies: 12
    Last Post: 4 Mar 2018, 01:30 AM
  2. Forgot Admin Password Not Working
    By jfreeman in forum General Questions
    Replies: 2
    Last Post: 9 Dec 2011, 03:29 PM
  3. Rest Admin Password not working
    By ThePatch in forum General Questions
    Replies: 5
    Last Post: 4 Mar 2009, 07:47 AM
  4. Admin name and password not working
    By ImpactForGospel in forum General Questions
    Replies: 3
    Last Post: 15 Nov 2007, 11:33 PM

Posting Permissions

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