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:
- Open file:
/catalog/includes/aplication_top.php - Find line:
$request_type = (getenv(’HTTPS’) == ‘on’) ? ‘SSL’ : ‘NONSSL’;
- Replace it with:
$request_type = (getenv(’HTTPS’) == ‘off’) ? ‘SSL’ : ‘NONSSL’;
That’s it, worked for me …


