Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help! Catalog doing weird stuff!


scapes

Recommended Posts

Hi,

 

I'm seeing some very weird behaviour with my catalog. AT least it seems pretty weird to me - though I am very new to this :rolleyes:

 

The address for the catalog is: http://www.supportivepc.com/catalog/

 

I had it setup for SSL, so the URL was https:... etc but that has stopped working. Now if I go there (the secure address) it pops up endless copies of the SSL dialog (This is a secure site, do you want to proceed, etc). If you click No at that point it opens the page, but without any formatting from the stylesheet.

 

If you go to the catalog without the "s" in the URL, it opens fine, but then if you go to checkout, it directs to an URL like:

https://supportivepc.comcheckout_shipping.p...50e1d494d4a2a27

 

Notice the "s" is back in there, and no slash after the domain name.

 

Any ideas? If I'm being stupid and missing somethign obvious, feel free to tell me so ;)

Cheers,Kevin

Link to comment
Share on other sites

Hmmm ... maybe this is a problem, could be related:

In the catalog/includes/configure.php, is this section of code

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'http://supportivepc.com'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://supportivepc.com'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', true); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', 'www.supportivepc.com');
 define('HTTPS_COOKIE_DOMAIN', '');
 define('HTTP_COOKIE_PATH', '/f');
 define('HTTPS_COOKIE_PATH', '');
 define('DIR_WS_HTTP_CATALOG', '/catalog/');
 define('DIR_WS_HTTPS_CATALOG', '');

 

Should that last line also have '/catalog/' as the value?

:unsure: :unsure: :unsure:

Link to comment
Share on other sites

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
define('HTTP_SERVER', 'http://supportivepc.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://supportivepc.com'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'supportivepc.com');
define('HTTPS_COOKIE_DOMAIN', 'supportivepc.com');
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/catalog/');
define('DIR_WS_HTTP_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/catalog/');

 

HTH

 

Matti

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...