Results 1 to 7 of 7

Hybrid View

  1. #1
    Join Date
    May 2006
    Posts
    38
    Plugin Contributions
    0

    Default No input file specified

    I get a No input file specified error when i try to "checkout" or "login". I tried uninstalling and then installing again and i get the same error. Any thoughts?

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

    Default Re: No input file specified

    Have you an URL that we could peek at?
    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
    May 2006
    Posts
    38
    Plugin Contributions
    0

    Default Re: No input file specified


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

    Default Re: No input file specified

    You have no products to try checkout ...

    Login does give the error stated ...

    Did you notice that the URL changes?

    Your site is at:
    Your login is at:
    Could you post, from the server, the file:

    /Zencart/includes/configure.php

    without your username and password?
    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!

  5. #5
    Join Date
    May 2006
    Posts
    38
    Plugin Contributions
    0

    Default Re: No input file specified

    very interesting....when i got to http://www.nucrisp.com/Zencart/index...ain_page=login it works, maybe i did something wrong with links.... anywho here is the configure file

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

    // 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', '/Zencart/');
    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/159/88/811577/user/832689/htdocs/Zencart/');

    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', 'nucrisp');
    define('DB_SERVER', '*********'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', '*************');
    define('DB_SERVER_PASSWORD', '*************');
    define('DB_DATABASE', 'nucrisp');
    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/159/88/811577/user/832689/htdocs/Zencart/cache');

    ?>
    Last edited by Kim; 3 Jun 2006 at 10:08 PM. Reason: removed zenID

  6. #6
    Join Date
    Jun 2003
    Posts
    33,721
    Plugin Contributions
    0

    Default Re: No input file specified

    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://www.nucrisp.com');
    define('HTTPS_SERVER', 'https://www.nucrisp.com');<<<change
    
    // 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', '/Zencart/');
    define('DIR_WS_HTTPS_CATALOG', '/Zencart/'); <<<change

  7. #7
    Join Date
    May 2006
    Posts
    38
    Plugin Contributions
    0

    Default Re: No input file specified

    dont take this the wrong way guys but ...... I LOVE YOU
    (thanks for helpin me out w/ my newbie problems)

 

 

Similar Threads

  1. v155 No input file specified
    By anderson6230 in forum General Questions
    Replies: 9
    Last Post: 26 Jul 2016, 12:01 AM
  2. No input file specified.
    By mawar in forum PayPal Express Checkout support
    Replies: 5
    Last Post: 27 Aug 2008, 03:29 AM
  3. No input file specified.
    By thededine in forum Basic Configuration
    Replies: 6
    Last Post: 6 Oct 2006, 05:48 AM
  4. No input file specified?
    By Erika22 in forum Setting Up Categories, Products, Attributes
    Replies: 9
    Last Post: 12 Jun 2006, 06:43 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