Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

"Top" Going to Web Host's Page


Guest

Recommended Posts

Posted

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?

Posted

What's your url?

 

Iggy

Everything's funny but nothing's a joke...

Posted

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...

Posted

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

Posted

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

Posted
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

 

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...