- π¬π§United Kingdom rachel_norfolk UK
I think this issue may have applied to a very old release of stm. Iβm very happy to be proven wrong but things seem correct now.
This needs to be added to the settings.php file. See https://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/drup...
if ((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on')
|| (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')
|| (isset($_SERVER['HTTP_HTTPS']) && $_SERVER['HTTP_HTTPS'] == 'on')
) {
$_SERVER['HTTPS'] = 'on';
}
If you eval this it fails even though it's a https site.
var_export(drupal_is_https());
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I think this issue may have applied to a very old release of stm. Iβm very happy to be proven wrong but things seem correct now.