Not it...

mikepcs <[email protected]> 14 Sep 2003 01:34:53 -0000
Newsgroups gmane.comp.web.oscommerce.general
Message-ID <8da4882969fff4be181f2910a80251f9@osCommerce-Forums>
This message was sent from: General Support
http://forums.oscommerce.com/viewtopic.php?p=229174#229174
----------------------------------------------------------------

Jim,

I figured it might just be easier to post the code...
Here's what I have up top in the config file...
ANy help would be appreciated...more than you know, I have a headache and I'm starting to see spots....

<?php
/*
  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
  define('HTTP_SERVER', 'http://mikespcscomputer.com'); // eg, http://localhost - should not be empty for productive servers
  define('HTTPS_SERVER', 'https://host29.websitesource.com'); // eg, https://localhost - should not be empty for productive servers
  define('ENABLE_SSL', true); // secure webserver for checkout procedure?
  define('HTTP_COOKIE_DOMAIN', 'www.mikespcscomputer.com');
  define('HTTPS_COOKIE_DOMAIN', 'host29.websitesource.com');
  define('HTTP_COOKIE_PATH', '/mikespcscomputer/oscommerce-2.2ms2/catalog/');
  define('HTTPS_COOKIE_PATH', '/mikespcscomputer/oscommerce-2.2ms2/catalog/');
  define('DIR_WS_HTTP_CATALOG', '/oscommerce-2.2ms2/catalog/');
  define('DIR_WS_HTTPS_CATALOG', '/mikespcscomputer/oscommerce-2.2ms2/catalog/');
  define('DIR_WS_IMAGES', 'images/');
  define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
  define('DIR_WS_INCLUDES', 'includes/');
  define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
  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/');