Thread: Checkout error

Results 1 to 8 of 8

Hybrid View

  1. #1
    Join Date
    Dec 2005
    Posts
    108
    Plugin Contributions
    0

    Default Checkout error

    When I add a product to the cart and click Checkout, I get this error:

    No input file specified.

    http://theemployeemall.com/chs

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

    Default Re: Checkout error

    From the look of things ... your configure.php file is not set up right ...

    If you could post, from the server, the file:
    /include/configure.php

    without your username and password ...

    We could see what's up ...

    NOTE: you are not using the templates and overrides and are using the Classic template ... 1st upgrade and you will wipe out all of your customization ...
    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!

  3. #3
    Join Date
    Dec 2005
    Posts
    108
    Plugin Contributions
    0

    Default Re: Checkout error

    <?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.theemployeemall.com');
    define('HTTPS_SERVER', 'https://www.theemployeemall.com/chs');

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

    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', '/data/11/0/122/18/774507/user/792756/htdocs/chs/');

    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', '');
    define('DB_SERVER', '205.178.146.19'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', '*****');
    define('DB_SERVER_PASSWORD', '*****');
    define('DB_DATABASE', 'carolina');
    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', 'none');
    define('DIR_FS_SQL_CACHE', '/data/11/0/122/18/774507/user/792756/htdocs/chs/cache');

    ?>

  4. #4
    Join Date
    Dec 2005
    Posts
    108
    Plugin Contributions
    0

    Default Re: Checkout error

    Quote Originally Posted by Ajeh
    NOTE: you are not using the templates and overrides and are using the Classic template ... 1st upgrade and you will wipe out all of your customization ...
    What do I need to do to make this switch? In my template selector, I only had one option.

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

    Default Re: Checkout error

    These:
    define('HTTP_SERVER', 'http://www.theemployeemall.com');
    define('HTTPS_SERVER', 'https://www.theemployeemall.com/chs');
    Should read:
    define('HTTP_SERVER', 'http://www.theemployeemall.com');
    define('HTTPS_SERVER', 'https://www.theemployeemall.com');

    These:
    define('DIR_WS_CATALOG', '/chs/');
    define('DIR_WS_HTTPS_CATALOG', '/');
    Should read:
    define('DIR_WS_CATALOG', '/chs/');
    define('DIR_WS_HTTPS_CATALOG', '/chs/');
    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
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Checkout error

    Quote Originally Posted by stevehare
    What do I need to do to make this switch? In my template selector, I only had one option.
    You will need to look into the FAQs or Wiki for how to build your own templates and overrides ...

    There are numerous threads on this and many templates in the Downloads to help you see how these are made ...

    But before going too much further ... you really want to stop and take the time to get your templates and overrides setup for you own custom template and get your templates and language files etc. all cleaned up and into your own templates and overrides ...
    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!

  7. #7
    Join Date
    Dec 2005
    Posts
    108
    Plugin Contributions
    0

    Default Re: Checkout error

    That did the trick...THANK YOU!

    Also, thanks for the tip on the templates...I'll get to work on that now.

    Do you have an e-mail address? I have some questions related to the use of certificates that will definitely raise many questions!

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

    Default Re: Checkout error

    Quote Originally Posted by stevehare
    Do you have an e-mail address? I have some questions related to the use of certificates that will definitely raise many questions!
    You may PM me and then I will tell you if you should be using the forum or contacting me privately ...
    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. Replies: 6
    Last Post: 11 Jan 2013, 12:51 PM
  2. Replies: 2
    Last Post: 15 Feb 2012, 09:08 PM
  3. Replies: 3
    Last Post: 16 Feb 2010, 05:33 PM
  4. Replies: 11
    Last Post: 16 May 2009, 04:45 PM
  5. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM

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