2johnsons Posted May 1, 2009 Posted May 1, 2009 Im testing my website/checkout when I go through the whole procedure at the end when the order is submitted and Im being shown at the top of the page "The order has been processed" when I select continue I get a message saying " This is a non-secure form" what do i have to do the prevent this from happening I don't want customers to be worried about the order they just placed and their information. Thank you for any information/help help
♥geoffreywalton Posted May 2, 2009 Posted May 2, 2009 Do you have an ssl certificate installed? Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile Virus Threat Scanner My Contributions Basic install answers. Click here for Contributions / Add Ons. UK your site. Site Move. Basic design info. For links mentioned in old answers that are no longer here follow this link Useful Threads. If this post was useful, click the Like This button over there ======>>>>>.
doesthiscount Posted May 2, 2009 Posted May 2, 2009 Hi, I have the same problem and yes I do have a valid certificate. I read the windows help and it said: --------------------- What does it mean when I have both secure and non-secure (mixed) content? Secure and non-secure content, or mixed content, means that a webpage is trying to display elements using both secure (HTTPS/SSL) and non-secure (HTTP) web server connections. This often happens with online stores or financial sites that display images, banners, or scripts that are coming from a server that is not secured. The risk of displaying mixed content is that a non-secure webpage or script might be able to access information from the secure content. Note Internet Explorer uses an encrypted protocol called Secure Sockets Layer (SSL) to access secure webpages. These pages use the prefix HTTPS, while regular webpages use HTTP. -------------------------------- I would like the warning box to go away, just dont know how. Thanks for the help in advance.
doesthiscount Posted May 2, 2009 Posted May 2, 2009 This link solved my problem: I had http when i should of had a https link. http://www.oscommerce.com/forums/index.php?sho...-secure+content Hope it help!
2johnsons Posted May 2, 2009 Author Posted May 2, 2009 Do you have an ssl certificate installed? Yes I do have an SSL Certificate.
germ Posted May 2, 2009 Posted May 2, 2009 Your /catalog/includes/configure file is incorrect. What do you have for: define('HTTPS_SERVER', ''); define('HTTPS_COOKIE_DOMAIN', ''); 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 >
2johnsons Posted May 2, 2009 Author Posted May 2, 2009 Your /catalog/includes/configure file is incorrect. What do you have for: define('HTTPS_SERVER', ''); define('HTTPS_COOKIE_DOMAIN', ''); Both of these areas on my site are empty. (see below) 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', ''); define('HTTPS_COOKIE_DOMAIN', '');
germ Posted May 2, 2009 Posted May 2, 2009 define('HTTPS_SERVER', 'https://flawnt.net'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', 'true'); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', '.flawnt.net'); define('HTTPS_COOKIE_DOMAIN', '.flawnt.net'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); Try those settings. 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 >
2johnsons Posted May 2, 2009 Author Posted May 2, 2009 define('HTTPS_SERVER', 'https://flawnt.net'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', 'true'); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', '.flawnt.net'); define('HTTPS_COOKIE_DOMAIN', '.flawnt.net'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); Try those settings. I made the change and Im still getting the same response at the end when I want to continue after the order is processed. "This form will be sent in a way that is not secure. Are you sure you want to send it?" I was also told that I need to recreate the links via "https" by my host and SSL Certificate provider. (what does this actually mean and how do I do this)
germ Posted May 2, 2009 Posted May 2, 2009 The site still isn't recognizing that SSL is "on". Start with the first post here: SSL Help 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 >
2johnsons Posted May 2, 2009 Author Posted May 2, 2009 The site still isn't recognizing that SSL is "on". Start with the first post here: SSL Help Im trying this add on and Im getting this error No input file specified.
germ Posted May 2, 2009 Posted May 2, 2009 The cfgchk.php file pinpoints the problem: cfgchk.php Version 1.1 local config file found! Processing it first... File Permissions: 0644 Found ENABLE_SSL. define('ENABLE_SSL', 0); SSL may not be enabled! In /catalog/includes/local/configure.php change: define('ENABLE_SSL', 0); to define('ENABLE_SSL', 1); 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 >
2johnsons Posted May 2, 2009 Author Posted May 2, 2009 The cfgchk.php file pinpoints the problem: In /catalog/includes/local/configure.php change: define('ENABLE_SSL', 0); to define('ENABLE_SSL', 1); I made the changes and still get this. Your Order Has Been Processed! Your order has been successfully processed! Your products will arrive at their destination within 2-7 business days. Please notify me of updates to the products I have selected below: Loop Thanks for shopping with us online! And when I select "continue" thats when I get "this is not a secure form" Im not understanding whey because https appears in the address bar just before i select confirm and finished then when i select continue the message appears.
germ Posted May 2, 2009 Posted May 2, 2009 I just tried it again: cfgchk.php Version 1.1 local config file found! Processing it first... File Permissions: 0644 Found ENABLE_SSL. define('ENABLE_SSL', 0); SSL may not be enabled! Nothing has changed... <_< 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 >
2johnsons Posted May 2, 2009 Author Posted May 2, 2009 I just tried it again: Nothing has changed... <_< Sorry about that I did not save the changes I made. I will attempt it again to see the results I get when going through the check out process
2johnsons Posted May 2, 2009 Author Posted May 2, 2009 Sorry about that I did not save the changes I made. I will attempt it again to see the results I get when going through the check out process Jim thank you for your patience and help. I did not get the message again indicating its a non secure form. How can I add HTTPS to the "log yourself in" page and "the create an account page" Thank you again.
germ Posted May 2, 2009 Posted May 2, 2009 How can I add HTTPS to the "log yourself in" page and "the create an account page" You just did. ;) And you're welcome. :) 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 >
Recommended Posts
Archived
This topic is now archived and is closed to further replies.