Guest Posted April 20, 2004 Posted April 20, 2004 I continue to get a waring in the administration section that the web site is unsecure. Everything else works. this is the admin configure: // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://needlepointbackbay.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://needlepointbackbay.com'); define('HTTPS_CATALOG_SERVER', 'https://needlepointbackbaycom.secure.powweb.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/www/n/e/needlepointbackbay.com/htdocs/store/catalog/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/catalog/admin/'); // absolute path required define('DIR_FS_ADMIN', '/www/n/e/needlepointbackbay.com/htdocs/store/catalog/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/store/catalog/'); // absolute path required define('DIR_FS_CATALOG', '/www/n/e/needlepointbackbay.com/htdocs/store/catalog/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); 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_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); This is my catalog/include/configuration define('HTTP_SERVER', 'http://needlepointbackbay.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://needlepointbackbaycom.secure.powweb.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'needlepointbackbay.com'); define('HTTPS_COOKIE_DOMAIN', 'needlepointbackbaycom.secure.powweb.com'); define('HTTP_COOKIE_PATH', '/store/catalog/'); define('HTTPS_COOKIE_PATH', '/store/catalog/'); define('DIR_WS_HTTP_CATALOG', '/store/catalog/'); define('DIR_WS_HTTPS_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', 'pub/'); define('DIR_FS_CATALOG', '/www/n/e/needlepointbackbay.com/htdocs/store/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); I am not sure where to proceed. TIA Tom
Guest Posted April 20, 2004 Posted April 20, 2004 Read the warning - or maybe tell us what the warning is :P Matti
Guest Posted April 20, 2004 Posted April 20, 2004 It simply says "You are not connect to SSL" in a ox on the left margin.
krikor Posted April 20, 2004 Posted April 20, 2004 Hey guys , i have the same problem too , the way i think i solved is by putting the ssl url in the define('HTTP_SERVER', 'https://whatever.com'); the first page doesn't open SSL but any button u click after that uses SSL , don't know if it helps but if anybody else has any solution let us know thanks
Guest Posted April 20, 2004 Posted April 20, 2004 Where is the code that tests for an SSL function. Maybe by knowing what it is looking for can identify the problem.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.