2.2 upgrade - http urls have dir_ws_http_catalog in the url
andrew_mcd <[email protected]> 11 Sep 2003 22:53:18 -0000
| Newsgroups | gmane.comp.web.oscommerce.installation |
|---|---|
| Message-ID | <e6db7733a5cbfef9ab8a4d572d90b693@osCommerce-Forums> |
This message was sent from: Installation and Configuration
http://forums.oscommerce.com/viewtopic.php?p=228125#228125
----------------------------------------------------------------
I've done the dirty deed and upgraded to 2.2 MS
All https links are , http ones are all like this now: http://www.duckout.comdir_ws_http_catalog
when they should be http://www.duckout/catalog/
Anyone seen this come up ?
my config file is:
// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://www.duckout.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.duckout.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.duckout.com');
define('HTTPS_COOKIE_DOMAIN', 'www.duckout.com');
define('HTTP_COOKIE_PATH', 'www.duckout.com');
define('HTTPS_COOKIE_PATH', 'www.duckout.com');
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_WS_HTTPS_CATALOG', '/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/');
define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
define('DIR_FS_DOCUMENT_ROOT', $HTTP_SERVER_VARS['DOCUMENT_ROOT']); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs)
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG);
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');