Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

ssl pop up in internet explorer


sprint10s

Recommended Posts

i get a box pop up when going into the catalog saying do you want to view on the website content that was delivered securely, is there a way for this not to pop up, im afraid that most user will say yes and then the catalog looks like crap.

 

www.racemaxims.com

then click on online catalog at the top

 

thanks

Link to comment
Share on other sites

Might have a config file error.

 

From the HTML source:

 

<base href="http://www.racemaxims.com/09catalog/">

That aint right. Needs to be https

 

How to install SSL on OSC: A Simple 1-2-3 Instruction, Simple, straighforward instructions

 

SSL Help

 

SSL Help support thread

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 >

Link to comment
Share on other sites

Read the threads I posted links to.

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 >

Link to comment
Share on other sites

sent you a pm

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 >

Link to comment
Share on other sites

The code that tests to see if SSL is active is in /includes/application_top.php around like 41:

 

// set the type of request (secure or not)
 $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';

Change your code to this:

 

// set the type of request (secure or not)
$request_type = (getenv('SERVER_PORT') == '443') ? 'SSL' : 'NONSSL';

Always backup any file on your site before making any edits.

 

A file that doesn't work quite like you want it to is better than one that won't work at all.

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 >

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...