Results 1 to 9 of 9
  1. #1
    Join Date
    May 2007
    Posts
    4
    Plugin Contributions
    0

    Default Admin login Problem - Security Certificate??

    Hi All

    I'm new to this...

    When trying to login to the Admin area i get the "There is a problem with this website's security certificate" page

    I've checked out the tutorials and experimented with changing the certificate permission code in the configure.php files, changed the username etc to Admin but still no joy.

    Any help would be appeciated.

    cheers

    Alex

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Admin login Problem - Security Certificate??

    I it functioning correctly on the cart side?
    Zen-Venom Get Bitten

  3. #3
    Join Date
    May 2006
    Location
    Isle of Wight, UK
    Posts
    78
    Plugin Contributions
    1

    Default Re: Admin login Problem - Security Certificate??

    If you dont have an SSL certificate then you will not be able to use zen-cart in secure mode.

    Best way to check is load your site up and put an 's' at the end of http on your browsers title bar. If your site loads with a padlock it working correcly and the error is in the cart configuration.

  4. #4
    Join Date
    May 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin login Problem - Security Certificate??

    Kobra - Seems to functioning ok - set up process was straight forward. It was when I came to the "installation successful page" and the link to the Admin section, that's when i hit the dead end.

    Thanks Andrew, just tried it and still get the "Problem with security message"

    (Without the "s" on http the carts index page loads.)

  5. #5
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Admin login Problem - Security Certificate??

    Post these parts of your configure.php files:
    /includes
    Code:
    // 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://yourdomain.com');
      define('HTTPS_SERVER', 'https://yourdomain.com');
    
      // Use secure webserver for checkout procedure?
      define('ENABLE_SSL', '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_CATALOG', '/zen1/');
      define('DIR_WS_HTTPS_CATALOG', '/zen1/');
    admin/includes
    Code:
      define('HTTP_SERVER', 'http://yourdomain.com');
      define('HTTPS_SERVER', 'https://yourdomain.com');
      define('HTTP_CATALOG_SERVER', 'http://yourdomain.com');
      define('HTTPS_CATALOG_SERVER', 'https://yourdomain.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', '/zen1/admin/');
      define('DIR_WS_CATALOG', '/zen1/');
    Zen-Venom Get Bitten

  6. #6
    Join Date
    May 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin login Problem - Security Certificate??

    Cheers - they're in, but still getting the same message.

  7. #7
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Admin login Problem - Security Certificate??

    Cheers - they're in, but still getting the same message.
    ??????

    I was asking that you post your file contents
    Zen-Venom Get Bitten

  8. #8
    Join Date
    May 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin login Problem - Security Certificate??

    Here you go

    /includes

    // 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', 'https://neverwork.co.uk');
    define('HTTPS_SERVER', 'https://www.neverwork.co.uk');
    // Use secure webserver for checkout procedure?
    define('ENABLE_SSL', '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_CATALOG', '/Cart/');
    define('DIR_WS_HTTPS_CATALOG', 'https://www.neverwork.co.uk/Cart/');


    admin/includes

    // 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', 'https://www.neverwork.co.uk');
    define('HTTPS_SERVER', 'https://www.neverwork.co.uk');
    define('HTTP_CATALOG_SERVER', 'https://www.neverwork.co.uk');
    define('HTTPS_CATALOG_SERVER', 'https://www.neverwork.co.uk');
    // Use secure webserver for catalog module and/or admin areas?
    define('ENABLE_SSL_CATALOG', 'false');
    define('ENABLE_SSL_ADMIN', 'false');

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

    Default Re: Admin login Problem - Security Certificate??

    This setting:
    PHP Code:
    define('DIR_WS_HTTPS_CATALOG''https://www.neverwork.co.uk/Cart/'); 
    Should be this:
    PHP Code:
    define('DIR_WS_HTTPS_CATALOG''/Cart/'); 
    NOTE: it is a good idea when working online to use lowercase directories without special characters or spaces etc.

    For testing and fooling around this is fine, but no one will remember to write a directory name with a capital letter in it ...
    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!

 

 

Similar Threads

  1. There is a problem with this website's security certificate.
    By black68gtx in forum General Questions
    Replies: 4
    Last Post: 28 Jan 2011, 05:56 PM
  2. Admin login problem: There was a security error when trying to login.
    By eddeford in forum Installing on a Linux/Unix Server
    Replies: 3
    Last Post: 27 Jan 2010, 03:59 PM
  3. Security Certificate Problem
    By luisc23 in forum General Questions
    Replies: 6
    Last Post: 25 Jun 2009, 06:31 PM
  4. Replies: 1
    Last Post: 11 Jan 2007, 04:14 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