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.
0 guests and 0 members have recently viewed this.
Leader-board Top Weekly Earners
The top 2 point earners from 29th Mar 2026 to 5th Apr 2026.
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.