Page 1 of 1

Bug Report

Posted: 02 Oct 2018, 18:27
by tyekynan
I force HTTPS on my entire Joomla site. I noticed that it kept pulling a favicon.ico from the root of my site via HTTP.

The favicon I am using it in my templates folder but nevertheless, my site was trying to pull a duplicate favicon via HTTP.

Once disabling the Phoca Open Graph Plugin, it stopped trying to pull that favicon.ico from the root via HTTP. Can we look into this? I currently have the plugin disable and have not got an error again pertaining to mixed content.

Re: Bug Report

Posted: 06 Oct 2018, 13:33
by Jan
Hi, hmmm, the Phoca Open Graph Plugin does not influence favicon, it just adds meta tags to your site :idea: with standard Joomla! methods:

Code: Select all

$document->setMetadata(htmlspecialchars($name), htmlspecialchars($value));
Or

Code: Select all

$document->addCustomTag('<meta property="'.htmlspecialchars($name).'" content="' . htmlspecialchars($value) . '" />');
It even does not have anything to do with https/http :idea: - it just sends information to Joomla! which open graph meta tags should be added to html.
:idea:

Jan