Results 1 to 10 of 27

Hybrid View

  1. #1
    Join Date
    Dec 2006
    Posts
    26
    Plugin Contributions
    0

    Default Admin logon just keeps repeating....

    I am not able to logon to my current Zencart admin...

    I type in my logon and password and its almost like doing a screen refresh....


    Also I just noticed in fantastico....


    When I click on zencart under fantastico it says that their is no current installation....


    But when I go to my website it shows up....

    But I can't add anything to the shopping cart....


    Like it is not communicating with the database...




    Not sure which way to go.....

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

    Default Re: Admin logon just keeps repeating....

    Is this a new install or one that you have had for some time?

    Has anything changed on your server? Upgrades of php or something along that line?

    Have you made any recent changes to your site?
    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.5]
    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
    Dec 2006
    Posts
    26
    Plugin Contributions
    0

    Default Re: Admin logon just keeps repeating....

    I am trying to help someone out with this...


    The zen cart has been up and running successfully for over a year...

    Thanks for the response...

    I am not sure what version of zencart is being run.. It is not 1.3.7

    The owner thinks it is 1.3.1...

    They have not done anything to their current database or PHP...

    But the host may have..




    Quote Originally Posted by Ajeh View Post
    Is this a new install or one that you have had for some time?

    Has anything changed on your server? Upgrades of php or something along that line?

    Have you made any recent changes to your site?

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

    Default Re: Admin logon just keeps repeating....

    If you edit the file:
    /admin/includes/configure.php

    And set the following to false:
    PHP Code:
      define('ENABLE_SSL_ADMIN''true'); 
    Can you now get in?

    If so, can you check the Tools ... Server Info ... and post everything from below the menu bar up to and including the large:
    PHP version blah blah
    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.5]
    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!

  5. #5
    Join Date
    Dec 2006
    Posts
    26
    Plugin Contributions
    0

    Default Re: Admin logon just keeps repeating....

    Its amazing what one letter can do...

    Are you telling me to set it to false...

    If so I tried that and still no dice..

    Here is a copy of the confgure.php

    <?php
    //
    /**
    *
    * @package Configuration Settings
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    // Define the webserver and path parameters
    // Main webserver: eg, http://localhost - should not be empty for productive servers
    // HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    // HTTP_CATALOG_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_CATALOG_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    /*
    * URLs for your site will be built via:
    * HTTP_SERVER plus DIR_WS_ADMIN or
    * HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or
    * HTTP_SERVER plus DIR_WS_CATALOG or
    * HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
    * ...depending on your system configuration settings
    */
    define('HTTP_SERVER', 'http://www.soaps-and-potions.com');
    define('HTTPS_SERVER', 'https://www.soaps-and-potions.com');
    define('HTTP_CATALOG_SERVER', 'http://www.soaps-and-potions.com');
    define('HTTPS_CATALOG_SERVER', 'https://www.soaps-and-potions.com');

    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'false');
    define('ENABLE_SSL_ADMIN', 'false');

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_ADMIN', '/catalog/admin/');
    define('DIR_WS_CATALOG', '/catalog/');
    define('DIR_WS_HTTPS_ADMIN', '/catalog/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/catalog/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
    define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
    define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_ADMIN', '/home/soapsan/public_html/catalog/admin/');
    define('DIR_FS_CATALOG', '/home/soapsan/public_html/catalog/');

    define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
    define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
    define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
    define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
    define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', '');
    define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', 'removed');
    define('DB_SERVER_PASSWORD', 'removed');
    define('DB_DATABASE', 'soapsan_zencart');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'file');
    define('DIR_FS_SQL_CACHE', '/home/soapsan/public_html/catalog/cache');

    ?>



    Quote Originally Posted by Ajeh View Post
    If you edit the file:
    /admin/includes/configure.php

    And set the to false:
    PHP Code:
      define('ENABLE_SSL_ADMIN''true'); 
    Can you now get in?

    If so, can you check the Tools ... Server Info ... and post everything from below the menu bar up to and including the large:
    PHP version blah blah

  6. #6
    Join Date
    Dec 2006
    Posts
    26
    Plugin Contributions
    0

    Default Re: Admin logon just keeps repeating....

    Also.. I was focusing on getting logged on to the admin section...

    Decided to create my own user logon account to test the shopping cart..

    It created a new account and sent me an email

    But the user logon does the same as the admin logon...

    When I enter my email and password for the logon it seems to work at first..
    and takes me back to the catalog home page as if I didnt even logon.. With no errors...


    Site is http://www.soaps-and-potions.com/cat...ain_page=login

 

 

Similar Threads

  1. Replies: 2
    Last Post: 6 Mar 2012, 06:26 PM
  2. Admin Logon
    By blackwolf in forum General Questions
    Replies: 6
    Last Post: 30 Jun 2010, 11:55 PM
  3. Admin login page just keeps reloading
    By josee225 in forum General Questions
    Replies: 2
    Last Post: 9 May 2009, 05:19 AM
  4. Admin keeps booting me off, on just one computer!
    By wtashby in forum General Questions
    Replies: 4
    Last Post: 23 Mar 2009, 01:42 AM
  5. cannot checkout, just keeps loading, all the sudden....
    By keylesslocks in forum General Questions
    Replies: 7
    Last Post: 23 Oct 2008, 04:52 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR