Edit /system/library/url.php
BUL
public function link($route, $args = '', $secure = false) {    if ($this->ssl && $secure) {        $url = 'https://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    } else {        $url = 'http://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    }    ... }
DEĞİŞTİR
public function link($route, $args = '', $secure = true) {    if ($this->ssl && $secure) {        $url = 'https://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    } else {        $url = 'https://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\') . '/index.php?route=' . $route;    }    ... }[B][U][/U][/B]


denermisin hocam.