Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Page cannot be displayed Brand New Install trouble


tracksid

Recommended Posts

Posted

We get a "Page cannot be displayed" error message when you click on login and sign up. Also when you chgeck out the same message appears. We have not changed any setting on the script itself, except the 3 CHMOD's it said to change. There shouldnt be any errors, we changed nothing, it even still has the default categories and products.

 

We had entered a ton of products previously, but thought we did something to cause the errors, so we backed up everything and tried to restore but it didnt restore anything.

 

Please look at the site and HELP ME if you can PLEASE!!!!!!!!

 

http://www.tracksidecollect.com/Store/

Posted

You have set up for site for SSL but you don't have an SSL certificate.

 

In catalog/includes/configure.php

 

Change;

 

define('HTTP_SERVER', 'http://www.mysite.com');

define('HTTPS_SERVER', 'https://www.mysite.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

 

To;

 

define('HTTP_SERVER', 'http://www.mysite.com');

define('HTTPS_SERVER', 'http://www.mysite.com');

define('ENABLE_SSL', false); // secure webserver for checkout procedure?

 

In catalog/admin/includes/configure.php

 

Change;

 

define('HTTP_SERVER', 'http://www.mysitep.com');

define('HTTP_CATALOG_SERVER', 'http://www.mysitep.com');

define('HTTPS_CATALOG_SERVER', 'https://www.mysite.com');

define('ENABLE_SSL_CATALOG', 'true');

 

To;

 

define('HTTP_SERVER', 'http://www.mysitep.com');

define('HTTP_CATALOG_SERVER', 'http://www.mysitep.com');

define('HTTPS_CATALOG_SERVER', 'http://www.mysite.com');

define('ENABLE_SSL_CATALOG', 'false');

 

 

Just make sure there are no https (with the "s" at the end) and that SSL_CATALOG is set to false.

Posted
We get a "Page cannot be displayed" error message when you click on login and sign up. Also when you chgeck out the same message appears. We have not changed any setting on the script itself, except the 3 CHMOD's it said to change. There shouldnt be any errors, we changed nothing, it even still has the default categories and products.

 

We had entered a ton of products previously, but thought we did something to cause the errors, so we backed up everything and tried to restore but it didnt restore anything.

 

Please look at the site and HELP ME if you can PLEASE!!!!!!!!

 

http://www.tracksidecollect.com/Store/

 

Your links are being directed to an HTTPS connection and you likely do not have an SSL certificate in place at the moment. Go into your configure.php file and set the following line as shown:

 

define('ENABLE_SSL', false);

 

Once you are in the mode to go live and have an SSL certificate in place, change it back to true.

 

Be well,

Tina

If you're not having fun you're not doing it right

 

Teach a person to fish rather than give them a loaf of bread or however that saying goes.

Posted
Your links are being directed to an HTTPS connection and you likely do not have an SSL certificate in place at the moment. Go into your configure.php file and set the following line as shown:

 

define('ENABLE_SSL', false);

 

Once you are in the mode to go live and have an SSL certificate in place, change it back to true.

 

Be well,

Tina

OK, I am trying to reload this, as nothing seems to work, this time w/o SSL. Next question, how do I apply for an SSL. I do want my customers to feel secure!!

Archived

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

×
×
  • Create New...