Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Sep 2006
    Location
    India
    Posts
    6
    Plugin Contributions
    0

    Default Admin Section is not working on My website

    Dear Members,

    I am new to this forum and i have installed zen cart on my website at www.acuhealthzone.com/products/

    Its really amazing to have shopping cart, unfortunately the ADMIN Panel is not working.

    http://www.acuhealthzone.com/products/admin

    is not working!!!

    I also want to integreat it with my basic website look and feel acuhealthzone.com

    Please suggest, I am looking forward to hear you soon.

    Thank you very much.

    Brijesh

  2. #2
    Join Date
    Aug 2006
    Location
    Canada
    Posts
    1,029
    Plugin Contributions
    5

    Default Re: Admin Section is not working on My website

    Could be a SSL configuration problem or file dropping from your file manager. I see it's a fresh install, but an older version. I would suggest a clean install of v1.3.5 .

    http://www.zen-cart.com/forum/showthread.php?t=45177

  3. #3
    Join Date
    Sep 2006
    Location
    India
    Posts
    6
    Plugin Contributions
    0

    Default Re: Admin Section is not working on My website

    thank you for prompt reply, i had installed this from dreamhost cp and its very easy to install from there...

    I am not programming tech guy..

    will you give me a installation steps and solutions to above prolem related to not functioning of admin panel.

    Thank you once again.

  4. #4
    Join Date
    Aug 2006
    Location
    Canada
    Posts
    1,029
    Plugin Contributions
    5

    Default Re: Admin Section is not working on My website

    You're welcome.

    I don't have much experience with SSL or configuration problems, I guess I've been lucky. So, the best I could do is point you to a guide by the Zen Cart team for another issue, but relating to configuration problems.

    http://www.zen-cart.com/forum/showthread.php?t=45440

    This has to do with your configure.php file settings located in your store/includes folder.

    If you choose to post the contents for easier investigation, please remember to remove your database, username, and password from the contents before posting.

  5. #5
    Join Date
    Aug 2006
    Location
    Canada
    Posts
    1,029
    Plugin Contributions
    5

    Default Re: Admin Section is not working on My website

    You'll also notice that your storefront also has SSL misconfiguration, the Log In doesn't work either.

  6. #6
    Join Date
    Sep 2006
    Location
    India
    Posts
    6
    Plugin Contributions
    0

    Default Re: Admin Section is not working on My website

    how can i do the ssl configuration...

    Please help

  7. #7
    Join Date
    Sep 2006
    Location
    India
    Posts
    6
    Plugin Contributions
    0

    Default Re: Admin Section is not working on My website

    thanks for prompt help...looking forward

  8. #8
    Join Date
    Aug 2006
    Location
    Canada
    Posts
    1,029
    Plugin Contributions
    5

    Default Re: Admin Section is not working on My website

    I was just thinking...how long ago do you get the SSL certificate? It actually may take time for that to get operational, depending on the certificate provider. Other than that, the best thing to do is post your contents of configure.php(located in the main includes folder, without your username/password, so we can take a look at your SSL settings in the mean time. Open up the file with your favorite editor like Notepad or Wordpad, copy and paste the contents in your post, omitting your database name/password(extremely, extremely important).

  9. #9
    Join Date
    Sep 2006
    Location
    India
    Posts
    6
    Plugin Contributions
    0

    Default Re: Admin Section is not working on My website

    <?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
    // HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    define('HTTP_SERVER', 'http://www.acuhealthzone.com');
    define('HTTPS_SERVER', 'https://www.acuhealthzone.com');

    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', 'true');

    // 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_CATALOG', '/products/');
    define('DIR_WS_HTTPS_CATALOG', '/products/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_INCLUDES', 'includes/');
    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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

    define('DIR_WS_PHPBB', '/');

    // * 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_CATALOG', '/home/trendz/acuhealthzone.com/products/');

    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
    define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
    define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_');
    define('DB_SERVER', 'product.acuhealthzone.com'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', '*************');
    define('DB_SERVER_PASSWORD', '******');
    define('DB_DATABASE', 'acuhealthzone');
    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', 'database');
    define('DIR_FS_SQL_CACHE', '/home/trendz/acuhealthzone.com/products/cache');

    ?>

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

    Default Re: Admin Section is not working on My website

    Either this is not your secure URL:
    https://www.acuhealthzone.com

    Or your secure certificate is not set up correctly on your site ...

    Check with your hosting site to see if this is set up right or what your secure URL should be ...

    If you turn off the enable secure in the:
    /admin/includes/configure.php

    Then you should be able to get into your admin as it is not trying to use an invalid URL ...

    Once you have the secure URL working correctly, then you can turn it back on ...
    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!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Can't Log In to Admin Section - takes me back to website home page
    By EducatedSavage in forum General Questions
    Replies: 0
    Last Post: 31 May 2011, 06:43 AM
  2. Website and Admin Area Not working
    By gbengoose in forum General Questions
    Replies: 3
    Last Post: 7 Nov 2010, 12:22 PM
  3. Stylesheet not working in admin section. Any ideas?
    By RescoCCC in forum Basic Configuration
    Replies: 12
    Last Post: 4 May 2010, 09:46 PM
  4. subcategories not working on main section of page?
    By omix-ada in forum Setting Up Categories, Products, Attributes
    Replies: 7
    Last Post: 26 Oct 2009, 09:38 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