Guest Posted June 12, 2005 Posted June 12, 2005 When I click on the "Top" in the breadcrumb trail on the page, it takes me to my web hosts page. Anyone know how to fix it?
Iggy Posted June 12, 2005 Posted June 12, 2005 What's your url? Iggy Everything's funny but nothing's a joke...
Guest Posted June 12, 2005 Posted June 12, 2005 What's your url? Iggy <{POST_SNAPBACK}> https://host338.ipowerweb.com/~belladon/sho...talog/index.php
Iggy Posted June 12, 2005 Posted June 12, 2005 What do these lines in your config file look like? define('HTTP_SERVER', 'http://127.0.0.1'); // 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', '127.0.0.1'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/catalog/'); Iggy Everything's funny but nothing's a joke...
Guest Posted June 12, 2005 Posted June 12, 2005 catalog\includes\configure.php define('HTTP_SERVER', 'https://host338.ipowerweb.com'); define('HTTPS_SERVER', 'https://host338.ipowerweb.com'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'belladonnagifts.net'); define('HTTPS_COOKIE_DOMAIN', 'host338.ipowerweb.com/~belladon'); define('HTTP_COOKIE_PATH', '/~belladon/shopping_cart/catalog/'); define('HTTPS_COOKIE_PATH', '/~belladon/shopping_cart/catalog/'); define('DIR_WS_HTTP_CATALOG', '/~belladon/shopping_cart/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/~belladon/shopping_cart/catalog/'); catalog/admin/includes/configure.php define('HTTP_SERVER', 'https://host338.ipowerweb.com'); define('HTTP_CATALOG_SERVER', 'https://host338.ipowerweb.com'); define('HTTPS_CATALOG_SERVER', 'https://host338.ipowerweb.com'); define('ENABLE_SSL_CATALOG', true); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/belladon/public_html/shopping_cart/catalog/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/~belladon/shopping_cart/catalog/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/belladon/public_html/shopping_cart/catalog/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/~belladon/shopping_cart/catalog/'); // absolute path required define('DIR_FS_CATALOG', '/home/belladon/public_html/shopping_cart/catalog/'); // absolute path required
Iggy Posted June 12, 2005 Posted June 12, 2005 Sorry to lead you astray there. Geotex has the answer in this post http://www.oscommerce.com/forums/index.php?sho...ndpost&p=567338 Iggy Everything's funny but nothing's a joke...
♥Vger Posted June 13, 2005 Posted June 13, 2005 You shouldn't be running with that setup anyway. All ssl pages are slower to deliver on the browser, because they have to be encrypted before delivery. Shared ssl is even slower because a good number of sites can be expected to be using the same cert for encryption. You have placed all of your website under the shared ssl - which means you will NEVER get any search engine rankings - because they don't list https pages. Vger
Guest Posted June 15, 2005 Posted June 15, 2005 You shouldn't be running with that setup anyway.? All ssl pages are slower to deliver on the browser, because they have to be encrypted before delivery.? Shared ssl is even slower because a good number of sites can be expected to be using the same cert for encryption. You have placed all of your website under the shared ssl - which means you will NEVER get any search engine rankings - because they don't list https pages. Vger <{POST_SNAPBACK}> I know SSL is slower. Does anyone know how to get all but the cart not SSL? The cart was set up through my web host and they automatically put the whole site as SSL. All I want SSL is the order pages where they enter their credit card or setup / change account info.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.