son13 Posted December 6, 2005 Posted December 6, 2005 Hi there, I am sorry to ask a rather dull question. I am completely new to PHP. There are two links on our website that do not work. They point to a secure connection. When I open the source code in IE I can see that the links are wrong (for example https://shop.mgwdoku.deaccount.php?osCsid=5...76820ece49039d) as there is a backslash missing in both. One http reference next to those is working completey fine. I cannot make any sense of that. It would be great if you could give me some advice. Why is the backslash missing? Thank you for your time. Cheers, Sonja
DRicher33 Posted December 6, 2005 Posted December 6, 2005 My first guess is that you are missing the backslash in your configure.php file under the includes? Dave
son13 Posted December 6, 2005 Author Posted December 6, 2005 Dave, thank you so much for your help. I had a look and found one line in the code that seems wrong to me (define('ENABLE_SSL', false);). It would be great if you could look at this: define('HTTP_SERVER', 'http://shop.mgwdoku.de'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'shop.mgwdoku.de'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/shop/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/shop/'); 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/'); Is that the reason? If yes, how could I adjust it? Sonja
DRicher33 Posted December 6, 2005 Posted December 6, 2005 Hi there, It looks like you haven't entered in a path for the Https either. Add in your path to the secure site (https://shop.mgwdoku.de) and set the SSL to true See if that helps
son13 Posted December 6, 2005 Author Posted December 6, 2005 Bless;-) Now I begin to understand...Will check with my colleague (who set the whole thing up) if there was any reason for that. You have been great. Thank you so much. Sonja
Recommended Posts
Archived
This topic is now archived and is closed to further replies.