Page 3 of 3 FirstFirst 123
Results 21 to 22 of 22
  1. #21
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default Re: Can't log in to admin...

    It seems to be working fine now.

    I just wish I new what caused it.

    The only thing I have done in the past two weeks is install stock by attributes and edit orders.

  2. #22
    Join Date
    May 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Can't log in to admin...

    Quote Originally Posted by Ajeh View Post
    Look at your database ...

    Is the database table via phpMyAdmin called admin or does it have a prefix?

    NOTE: if it has a prefix so do all the tables ...

    If the table is called admin uses the following:
    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),
    KEY idx_admin_email_zen (admin_email)
    TYPE=MyISAM
    PHP Code:
    INSERT INTO admin VALUES (1'Admin''admin@localhost''351683ea4e19efe34874b501fdbf9792:9b'1); 
    If the admin has a prefix such as zen_admin then use the following where the admin is changed to zen_admin or whatever your prefix is:

    PHP Code:
    DROP TABLE IF EXISTS zen_admin;
    CREATE TABLE zen_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),
    KEY idx_admin_email_zen (admin_email)
    TYPE=MyISAM
    PHP Code:
    INSERT INTO zen_admin VALUES (1'Admin''admin@localhost''351683ea4e19efe34874b501fdbf9792:9b'1); 
    Your login is now:
    Username: Admin
    Password: admin

    Those are case sensative ...

    Then go to the Tools ... Admin Settings ... and reset your email and password once you get in ...
    i have been following all the suggestion to this thread and got to this point......now my log in page reads

    1146 Table 'hiphopsp_store.hiphopsp_admin' doesn't exist
    in:
    [select * from hiphopsp_admin where admin_name='demo' or admin_name='Admin']
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
    help

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. v152 can't log in to admin
    By earmsby in forum General Questions
    Replies: 9
    Last Post: 22 Dec 2015, 08:53 PM
  2. Replies: 6
    Last Post: 4 Dec 2013, 08:02 PM
  3. Replies: 3
    Last Post: 4 Jun 2009, 06:40 PM
  4. Can't log in - can't add to cart - can't log in to admin?
    By ehdesign in forum General Questions
    Replies: 6
    Last Post: 5 Mar 2009, 09:29 AM
  5. Replies: 16
    Last Post: 31 Jan 2008, 06:44 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