Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Images showing in Firefox but not IE


cox1e

Recommended Posts

Posted
Working fine for me in both FF2 and IE7

Yeah managed to find the problem. It to do with the SSl config in application_top.php

 

Different server check for different answers when checking for SSL's

 

Change:

$request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';

to:

$request_type = (getenv('HTTPS') == '1') ? 'SSL' : 'NONSSL';

 

This.

Archived

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

×
×
  • Create New...