Results 1 to 8 of 8
  1. #1
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default changin admin password

    How do i go about changing the admin password for my site, i currently have 2 other admins on my site including myself, so at some point when the site is complete i will need to change the password so only i can access it?

    many thanks

    Elliot

  2. #2
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: changin admin password

    You could install the "Admin Profiles" contribution to allow multiple access levels for various users (with different passwords).

    OR, you could reset the admin password when the time is right by selecting the "forgot password" from under the login box. Have the password reset (like you forgot it) and the new one will be sent to the email you have listed in the admin.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  3. #3
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: changin admin password

    Or if you're already logged in you could change it under Admin->Tools->Admin Settings
    .

    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
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Re: changin admin password

    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

  5. #5
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: changin admin password

    Quote Originally Posted by Orchard_Direct View Post
    i am already logged in, does the rest password option under admin settings provide a new password?
    No, it lets you type in a new one.

    Quote Originally Posted by Orchard_Direct View Post
    Also I'm interested in the different different user accounts for different levels of access, do you have any more info on this?
    the post above by econcepts answers this question
    .

    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.

  6. #6
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Re: changin admin password

    Thanks!

  7. #7
    Join Date
    Sep 2007
    Posts
    13
    Plugin Contributions
    0

    Default HELP - Admin is screwed up!!

    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?

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

    Default Re: changin admin password

    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:
    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;
    Next run this to set the login to Admin admin:
    Code:
    INSERT INTO admin VALUES (1, 'Admin', 'admin@localhost', '351683ea4e19efe34874b501fdbf9792:9b', 1);
    WARNING: be sure to reset the Admin login as soon as you have access for the Admin password and email address ...

    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!

 

 

Similar Threads

  1. Replies: 87
    Last Post: 5 Jun 2015, 02:07 AM
  2. Replies: 1
    Last Post: 1 Feb 2015, 03:12 PM
  3. v150 admin password expired, won't reset, will not send new password to email
    By baltimorestreetmods in forum General Questions
    Replies: 2
    Last Post: 6 Sep 2012, 07:16 PM
  4. Admin menu bar disappeared after resetting Admin password
    By stxmona in forum General Questions
    Replies: 7
    Last Post: 10 Sep 2009, 01:16 AM
  5. Changin admin password. No SSL ?
    By tukanglibas in forum General Questions
    Replies: 1
    Last Post: 14 May 2009, 08:09 AM

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