Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

checkout_success.php


ms-signs

Recommended Posts

Posted

Just an "FYI"....

 

I noticed that your whole shop is HTTPS.

 

Major search engines (like Google) don't index any HTTPS pages, so none of your pages will end up on them if you leave it like it is...

:-"

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted

Post what you have for these defines in your /includes/configure.php file:

 

define('HTTP_SERVER', '');
define('HTTPS_SERVER', '');
define('ENABLE_SSL', '');
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '');
define('HTTPS_COOKIE_PATH', '');

Don't post the entire file, I only need to see what you have for these seven definitions.

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted
Post what you have for these defines in your /includes/configure.php file:

 

define('HTTP_SERVER', '');
define('HTTPS_SERVER', '');
define('ENABLE_SSL', '');
define('HTTP_COOKIE_DOMAIN', '');
define('HTTPS_COOKIE_DOMAIN', '');
define('HTTP_COOKIE_PATH', '');
define('HTTPS_COOKIE_PATH', '');

Don't post the entire file, I only need to see what you have for these seven definitions.

 

 

this is what i have:

 

define('HTTP_SERVER', 'https://mssigns.ipower.com'); // eg, http://localhost - should not be empty for productive servers

define('HTTPS_SERVER', 'https://mssigns.ipower.com'); // eg, https://localhost - should not be empty for productive servers

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

define('HTTP_COOKIE_DOMAIN','ms-signs.com');

define('HTTPS_COOKIE_DOMAIN', 'mssigns.ipower.com');

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

 

Thank you.

Posted

define('HTTP_SERVER', 'https://mssigns.ipower.com'); // eg, http://localhost - should not be empty for productive servers

 

is wrong. It should be http://mssigns.com not https:// ...

 

define('HTTPS_SERVER', 'https://mssigns.ipower.com'); // eg, https://localhost - should not be empty for productive servers

 

looks wrong. Do you have your own SSL certificate or are you sharing one?

 

 

also if you actually want to have SSL turn on when it should you should have

 

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

Posted

Change this one:

 

define('HTTP_SERVER', 'https://mssigns.ipower.com'); // eg, http://localhost - should not be empty for productive servers

To:

 

define('HTTP_SERVER', 'http://ms-signs.com'); // eg, http://localhost - should not be empty for productive servers

And this one:

 

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

To:

 

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

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted
Change this one:

 

define('HTTP_SERVER', 'https://mssigns.ipower.com'); // eg, http://localhost - should not be empty for productive servers

To:

 

define('HTTP_SERVER', 'http://ms-signs.com'); // eg, http://localhost - should not be empty for productive servers

And this one:

 

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

To:

 

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

 

I did the changes and it worked, thank you.

 

I have my own ssl, but I got my domain www.ms-signs.com after the hosting account was set up and the ssl whent to my temp domain mssigns.ipower.com so i have to use both domains now.

Posted

Try this.

 

Login to your Admin.

 

Click on Configuration.

 

On that page, set "Use Search-Engine Safe URLs (still in development)" to false (then save it).

If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.

 

"Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice."

- Me -

 

"Headers already sent" - The definitive help

 

"Cannot redeclare ..." - How to find/fix it

 

SSL Implementation Help

 

Like this post? "Like" it again over there >

Posted
Try this.

 

Login to your Admin.

 

Click on Configuration.

 

On that page, set "Use Search-Engine Safe URLs (still in development)" to false (then save it).

 

It worked, thank you!!!!

Archived

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

×
×
  • Create New...