Hi. Just checking my SSL configuration, I see this:
https://www.boonex.com/trac/dolphin/wiki/GenFAQ#HowcanIenableSSLsupportinDolphin
which defines:
1) Find the line starting with something like:
$site['url'] = "http://mysite.com/";
and replace http with https:
$site['url'] = "https://mysite.com/";
2) Find the line which looks exactly this way:
header( "Location:http://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" );
and replace it with
header( "Location:https://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" );
The problem is, the header.inc.php in 7.2.1 doesn't have point 2.
It has instead:
header( "Location:{$aUrl['scheme']}://{$aUrl['host']}{$_SERVER['REQUEST_URI']}" );