dinohaven Posted July 27, 2004 Posted July 27, 2004 Any help on this would be appreciated: I just moved my site up a directory, and I have a few quick questions: 1) I went through my configure.php file and removed the /catalog/ directory. Some of my definition lines look like this: define('HTTP_COOKIE_PATH', '//'); define('HTTPS_COOKIE_PATH', '//'); define('DIR_WS_HTTP_CATALOG', '//'); define('DIR_WS_HTTPS_CATALOG', '//'); Is this OK? 2) When I go to where you want to process your credit card, I don't see the lock anymore? Also, I am getting a popup window that says my site is partially secure. Why is this? When it was in the /catalog/ directory, I wasn't getting this type of warning and the lock was there. Thanks, Christopher Morrow
Guest Posted July 27, 2004 Posted July 27, 2004 use a single slash this is the reason ssl is not working
dinohaven Posted July 27, 2004 Author Posted July 27, 2004 Do you mean: define('HTTP_COOKIE_PATH', '/'); ???, CSM
dinohaven Posted July 27, 2004 Author Posted July 27, 2004 Hmmm....I removed the // to read / and I am still not getting the SSL. My config file looks something like this: define('HTTP_SERVER', 'http://www.website.com'); define('HTTPS_SERVER', 'https://www.website.com'); define('ENABLE_SSL', true); define('HTTP_COOKIE_DOMAIN', 'www.website.com'); define('HTTPS_COOKIE_DOMAIN', 'www.website.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_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/'); What did I screw up??? CSM
Recommended Posts
Archived
This topic is now archived and is closed to further replies.