Ina Code Blog

bunch of code in one place
« Euroskills 18 - 20 september 2008 - Rotterdam
Magento: onepage checkout problem »


Nov
11

osCommerce: IE image display problem

Posted by admin in osCommerce, tips

Some updates occured on our server and all osCommerce sites broke down in Internet Explorer. Mozilla worked just fine. The problem was that no images were displayed on site.

This solved my problem:

  1. Open file: /catalog/includes/aplication_top.php
  2. Find line:

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

  3. Replace it with:

    $request_type = (getenv(’HTTPS’) == ‘off’) ? ‘SSL’ : ‘NONSSL’;

That’s it, worked for me …

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Leave a Reply

Comment