Zen Cart Logo
Forums / Installing on a Windows Server / Pulling my hair out! No Input File Specified

Pulling my hair out! No Input File Specified

Locked

Views: 1,881

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
29 Aug 2007, 7:00 PM
#1
militarygunsupply avatar

militarygunsupply

New Zenner

Join Date:
Aug 2007
Posts:
11
Plugin Contributions:
0

Pulling my hair out! No Input File Specified

Hi Guys,

I've got this issue that is simply driving me insane! With SSL enabled for checkout, I add an item to the cart and click "Checkout". I am then brought to a blank page with the error "No input file specified".

I have looked at every single post about it on this forum I could find, and spent several hours looking for an answer on google/yahoo.

Since I'm working on a local server, the buck stops with me. I have nobody to run to! Please note that this ONLY occurs when SSL is turned ON.

I am using IIS6 with PHP 5.2 as CGI (didn't work with 4.x either)
I'd prefer not to do a fresh install since I stupidly added ~200 products before testing that the SSL worked.

My shop can be located at http://www.militarygunsupply.com/shop2

Here is the config file less login info:

/*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
/***************       The 2 files should be kept separate and not used to overwrite each other.      ***********/

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

  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', 'C:/Inetpub/militarygunsupply.com/wwwroot/shop2/');

  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', 'localhost');
  define('DB_SERVER_USERNAME', '********');
  define('DB_SERVER_PASSWORD', '********');
  define('DB_DATABASE', 'mgsshop');
  define('USE_PCONNECT', 'false'); // use persistent connections?
  define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

  // 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', 'C:/Inetpub/militarygunsupply.com/wwwroot/shop2/cache');

?>

ANY help is appreciated. I've tried EVERYTHING I can find online and it's just not fixing things.
Thanks in advance

30 Aug 2007, 3:09 PM
#3
militarygunsupply avatar

militarygunsupply

New Zenner

Join Date:
Aug 2007
Posts:
11
Plugin Contributions:
0

Re: Pulling my hair out! No Input File Specified

Thanks, I'll try that. What setting will be wiped out? I'm assuming I'll have to set all my shipping options and everything back up?

30 Aug 2007, 3:18 PM
#4
militarygunsupply avatar

militarygunsupply

New Zenner

Join Date:
Aug 2007
Posts:
11
Plugin Contributions:
0

Re: Pulling my hair out! No Input File Specified

Thanks but that didn't work.... luckily I backed everything up so I didn't lose all my settings for no reason! Remember that this ONLY happens when SSL is on! It doesn't happen with it off, as it did in the post you referenced.

Any more ideas? :no:

30 Aug 2007, 3:27 PM
#5
Kim avatar

Kim

Obaa-san

Join Date:
Jun 2003
Location:
West Coast, North America
Posts:
26,606
Plugin Contributions:
0

Re: Pulling my hair out! No Input File Specified

Since I'm working on a local server, the buck stops with me. I have nobody to run to! Please note that this ONLY occurs when SSL is turned ON.

Do you have an SSL cert and the other settings needed in place?

30 Aug 2007, 3:44 PM
#6
militarygunsupply avatar

militarygunsupply

New Zenner

Join Date:
Aug 2007
Posts:
11
Plugin Contributions:
0

Re: Pulling my hair out! No Input File Specified

Thanks guys, I have figured it out.

It had to do with the fact that I'm running internal SSL to access an Exchange server from home. I can get the site to work by switching the SSL off on the internal server because it causes a port conflict.

Now I've got to try to figure out how to still access exchange server :blink: