Thread: Checkout issue

Results 1 to 10 of 10
  1. #1
    Join Date
    Jun 2012
    Posts
    9
    Plugin Contributions
    0

    cart error Checkout issue

    when checkout is clicked it displays "can't find the server at bigdsigns.comhttps." It is apparent that there is an https. at the end that shouldn't be there but I can't find this in the php code anywhere.

    Any help would be appreciated greatly!

    Darrell

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,893
    Plugin Contributions
    96

    Default Re: Checkout issue

    You could try using your admin's Tools->Developers Tool Kit to search for (case-sensitive): https

    That should show up once (HTTPS_SERVER) in your /includes/configure.php and twice (HTTPS_SERVER and HTTPS_CATALOG_SERVER) in your YOUR_ADMIN/includes/configure.php.

    Any occurrence outside of those places is most likely your culprit.

  3. #3
    Join Date
    Jun 2012
    Posts
    9
    Plugin Contributions
    0

    Default Re: Checkout issue

    Tried to already and didn't see anything out of place. Viewing the source from the webpage shows the following;

    <div id="headerWrapper">
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <ul class="back">
    <li><a href="http://bigdsigns.com/">Home</a> | </li>
    <li><a href="https://bigdsigns.comhttps:/index.php?main_page=login">Log In</a> | </li>

  4. #4
    Join Date
    Jun 2012
    Posts
    9
    Plugin Contributions
    0

    Default Re: Checkout issue

    I'm going crazy looking through all this coding...any other ideas?

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

    Default Re: Checkout issue

    Could you post the file, from the server, without your username/password information, for the file:
    /includes/configure.php
    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!

  6. #6
    Join Date
    Jun 2012
    Posts
    9
    Plugin Contributions
    0

    Default Re: Checkout issue

    I'm out of the office now but I'll do that later today...thanks for the reply!

  7. #7
    Join Date
    Jun 2012
    Posts
    9
    Plugin Contributions
    0

    Default Re: Checkout issue

    // Define the webserver and path parameters
    // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    define('HTTP_SERVER', 'http://bigdsigns.com');
    define('HTTPS_SERVER', 'https://bigdsigns.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', '/');
    define('DIR_WS_HTTPS_CATALOG', 'https:/');

    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', 'D:\Hosting\9430289\html\/');

    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_CHARSET', 'latin1');
    define('DB_SERVER', 'big1216106494308.db.9430289.hostedresource.com');
    define('DB_SERVER_USERNAME', '*************');
    define('DB_SERVER_PASSWORD', '*************');
    define('DB_DATABASE', 'big1216106494308');

    // 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', '');
    define('DIR_FS_SQL_CACHE', 'D:\Hosting\9430289\html\/cache');

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

    Default Re: Checkout issue

    This needs to be changed:
    Code:
    define('DIR_WS_HTTPS_CATALOG', 'https:/');
    Code:
    define('DIR_WS_HTTPS_CATALOG', '/');
    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!

  9. #9
    Join Date
    Jun 2012
    Posts
    9
    Plugin Contributions
    0

    Default Re: Checkout issue

    Thanks... :) ... how did i not notice this.

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

    Default Re: Checkout issue

    Thanks for the update that this is now working for you ...
    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. Checkout Issue
    By Bruce1952 in forum General Questions
    Replies: 6
    Last Post: 25 Sep 2011, 02:28 PM
  2. Checkout Issue
    By travel124 in forum General Questions
    Replies: 5
    Last Post: 6 Nov 2009, 08:36 PM
  3. Checkout issue?
    By alphatrion in forum General Questions
    Replies: 0
    Last Post: 17 Sep 2007, 10:06 AM
  4. Checkout Issue
    By pyrobri in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 26 May 2007, 07:34 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