Yaradan kutup ayısı espirime kızdı galiba, al işte sana cevap deyip utandırdı beni.
Google'da "ssl problem" diye aratıp umutsuz ve rastgele yapılan bir iki tık'dan sonra
forums.oscommerce.com/index.php?showtopic=316371&st=0
link'ine ulaştım. Ve orada
germ kullanıcı adlı abimizin önerisi olan
In /catalog/includes/application_top.php change this code:
CODE
// set the type of request (secure or not)
$request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';
to:
CODE
// set the type of request (secure or not)
// $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';
$request_type = ($_SERVER['HTTPS'] == 'on') ? 'SSL' : 'NONSSL';
önerisini uygulayıp sorunum çözüldüğünü gördüm.
Yardımcı olmaya çalışan herkese teşekkürler.