ms-signs Posted May 7, 2008 Posted May 7, 2008 On the checkout_success.php when you click continue it takes me to https://mssigns.ipower.com/checkout_success...2cb31b00dbb56fa but it an error: Internet Explorer cannot display the webpage I receive the order OK
germ Posted May 7, 2008 Posted May 7, 2008 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 >
ms-signs Posted May 7, 2008 Author Posted May 7, 2008 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... :-" How can I change it, my domain is http://ms-signs.com , but once you click on any link it takes you to https://www.mssigns.ipower.com/
germ Posted May 7, 2008 Posted May 7, 2008 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 >
ms-signs Posted May 10, 2008 Author Posted May 10, 2008 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.
ozEworks Posted May 10, 2008 Posted May 10, 2008 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?
germ Posted May 10, 2008 Posted May 10, 2008 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 >
ms-signs Posted May 11, 2008 Author Posted May 11, 2008 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.
ms-signs Posted May 11, 2008 Author Posted May 11, 2008 On the checkout_success.php when you click continue it takes me to https://mssigns.ipower.com/checkout_success...2cb31b00dbb56fa but it an error: Internet Explorer cannot display the webpage I receive the order OK Can any one help me with this problem.
germ Posted May 11, 2008 Posted May 11, 2008 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 >
ms-signs Posted May 11, 2008 Author Posted May 11, 2008 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!!!!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.