Quote:
Originally Posted by PretjeNL
Hi Nick,
i checked the cron jobs but they are all on HTTPS, but your point made me thinking.
On all the sites i use the Really Simple SSL plugin to get the mixed content on HTTPS, and i think that's the problem. This plugin is adding some rules to the .htacces:
# BEGIN rlrssslReallySimpleSSL rsssl_version[4.0.5]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
I took this out and now CB is not showing any grey logo's anymore and works fine while the mixed content is still HTTPS
|
Happy to see you found the issue, if you are using Really Simple SSL it probably means you are using Cloudflare to be https. In that case you need to use that htaccess rule:
# Redirect to https
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
Regards,
Nick