XF 2.0 Problem with Favicon URL

Nirjonadda

Well-known member
I am not getting full correct Favicon URL in page info. Also this type Favicon URL doing insecure site. Please let me know this problem.

Favicon URL

Code:
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAACe0lEQVQ4jaWTzWsTQRjGB3qwzcxss9lNsoRIUygxEii1m53Z2W01H012dpNNTNtULUh7EC+FSmlLRS9CL55r8eBfoAiCV6E9CIq9iRVUvDRpwQr+CZL1kGw/cunB9zY87/t7H56ZAeB/azWZlRtxNuCf10ZLcD2dVVbSLNQAoG8pVZDskZFLvXMrcTawmszKoBGd3CkPkoYvzMdv3J+WzZ9Vkb1yo2S4EZl4wwVi9QLuxCdn6pKxCyqi0axKbPt27PplAACohc1HHOteCWp7rqSmykH9c13Sny4mNMUfXrqaH7qlTD4rIdICFdFo2pi2uaAtAwBALdoDENm+g/W/RSFz1wfMKeaaI+jtEiSHwBXZAcfUq4WM93OK6dTD7KEt6F4Rkk9czlxxRfaFY+rVJfPdtGLmFodyzkx44oPdWdIEFdFoWoh6HFOPC9r2bNTY7HXg605Q25yNmlsc6x5H1Os6MJocU89CpF0Z1I+rIXbE8amDisj2T/SgfuSK7JeFSLu7pJNBh6a1LESPLUjaHNMTQFlk+xxRrwjJgYXJnyIkvzkihxzTU4CFqJdH449dyXjOMe3a0/bcmJqqiOyrhaiXQ+pyNcReTyH1RTWiP+lkcCbEAlQfWKJatgfJRxufD9FCpF2A6oIjkvlcYKxWj5jrttAT4hTMrHTegbHRtXcuxDwcX/SvsdPT48AH5IPXhsqivmVhei7EAlQXfEA9PLHRddACTpDuTKHM9+yZhmpEny6hzMtSdHTYDtK3RZT5lg2M3fR1V9bvFbH2owAzu0DFSVmDaUUFsYDfkAWJfgbSIQBAH8EpSYNpJQES/b6ugligM5OUL/qsF9Y/5u/lE2Xk5x4AAAAASUVORK5CYII=

How can get this type Favicon URL

Code:
https://xenforo.com/community/styles/default/xenforo/xenforo-favicon.png

ScreenShot00093.webp
 
It's likely something to do with the way that XF modifies the favicon with the red dot if you have new alerts/conversations.

I don't really understand your "insecure site" comment - data URIs are just a way of representing binary data in URL form so they're not actually served over HTTP and therefore can't be "insecure".

Nothing to worry about.
 
I don't really understand your "insecure site" comment - data URIs are just a way of representing binary data in URL form so they're not actually served over HTTP and therefore can't be "insecure".

Does not know but some time isn't my Site's padlock green. Now loading padlock green.

ScreenShot00095.webp
 
It’s almost certainly not the favicon. The browser console will usually tell you which assets are loading insecurely. At least in Chrome it will.
 
It’s almost certainly not the favicon. The browser console will usually tell you which assets are loading insecurely. At least in Chrome it will.

@Chris D Does this image URL http://www.w3.org/2000/svg used by Xenforo?

Code:
data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204.9%2010'%3E%3Cstyle%3E._xfG%7Bfill:%23141414;%7D%3C/style%3E%3Cpath%20class='_xfG'%20d='M1.4%204.7l1.1-1.5%201%201.5m0%20.6l-1%201.5-1.1-1.5'/%3E%3C/svg%3E

ScreenShot00006.webp
 
That's not a URL, that's an XML namespace. It shouldn't be causing any insecure content errors, if that's what you're thinking.

It's a data URL so all of the data for the SVG is loaded locally from that full string in your code box there.
 
Top Bottom