The current SSL detection isn't working on IIS, while IIS have $_SERVER['HTTPS'] = "off" set if traffic is non-SSL. This small change fixes the bug:
// Are we on a secure page?
if($_SERVER['HTTPS'] == "on") {
$prefix = 's://ssl';
}
Comments
Comment #1
hass commentedComment #2
buddaCommitted recommended SSL detection routine to CVS. Let me know how this goes for IIS, and Apache, i've not got a 5.x HTTPS site to test on.
Comment #3
(not verified) commented