Secure pages seems to be working properly, however on it's initial redirect (the first time it goes from http:// to https://) the theme completely breaks. it seems that no stylesheets are loaded. If you then reload the page or go to another secure page, the theme loads properly.

I'm wondering if a cause may be that we're using Varnish server side caching...Anyone seen this?

Comments

Rob_Feature’s picture

Version: 6.x-2.x-dev » 6.x-1.9

Oops, changing to the proper version where I'm seeing this bug...

babusaheb.vikas’s picture

Issue summary: View changes

Put it in your setting.php

if (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') {
$protocol = 'https';
} else {
$protocol = 'http';
}
$base_url = $protocol . "://" . "example.com" ;

I hope your problem will solve.