Code:
define('HTTP_SERVER', 'http://www.gerredhudson.com');
define('HTTPS_SERVER', 'https://www.gerredhudson.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', '/');
define('DIR_WS_HTTPS_CATALOG', 'https://gerre001.secure.omnis.com/');
HTTP*_SERVER entries are for URLs only
DIR_ entries are for FOLDERs, not URLs
Thus, you'll need to change that to something like:
Code:
define('HTTP_SERVER', 'http://www.gerredhudson.com');
define('HTTPS_SERVER', 'https://gerre001.secure.omnis.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', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
The installer builds the data from whatever you type in. It does not validate your HTTPS data, so it must have been entered incorrectly then.