#287 - Error after SSL/TLS (HTTPS) Configuration from an https site This is a spacer post for a website comment topic. The content this topic relates to: #287 - Error after SSL/TLS (HTTPS) Configuration from an https site By Guest posted 3rd Oct 2011, 5:23 AM Do not fill this field in. In sources/global2.php change... substr($base_url,strlen('http://')) to preg_replace('#^\w*://#','',$base_url) -- This bug has happened because you've configured a base URL (when installing, not when debranding) that is https://, but you've also turned on SSL pages and it's making the false assumption it has to convert an http:// URL into an https:// URL. 1 guest and 0 members have recently viewed this. Sort: Relevance Newest first Oldest first Rating Popularity
substr($base_url,strlen('http://'))
to
preg_replace('#^\w*://#','',$base_url)
--
This bug has happened because you've configured a base URL (when installing, not when debranding) that is https://, but you've also turned on SSL pages and it's making the false assumption it has to convert an http:// URL into an https:// URL.