• I have a few http URLs in my website that aren’t being converted to https.

    
    script src="https://html5shim.googlecode.com/svn/trunk/html5.js"
    
    <img class='lazyload dark' src='data:image/svg+xml,%3Csvg%20xmlns=%22https://www.w3.org/2000/svg%22%20viewBox=%220%200%20210%20140%22%3E%3C/svg%3E' data-src=
    

    How to convert this links from http to https?

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator Yui

    (@fierevere)

    永子

    Please check for theme updates or report this to your theme authors.

    Of course you can change this in theme code yourself, but updating theme is better.

    PS:

    html5shim is most likely unused by modern browser, its made for really really ancient browsers, like old IE.

    xmlns can be https://, you dont have to worry about this

    • This reply was modified 4 years, 6 months ago by Yui.
    Thread Starter jeejoh

    (@jeejoh)

    Thanks for the reply,
    But when i checked my site in jitbit.com/sslcheck it will show unsecured content contain so many urls.

    I checked the URL https://html5shim.googlecode.com/svn/trunk/html5.js and can′t be reached.

    You can change any string with the search and replace plugin. That will change any http to https or any other string.

    Moderator Yui

    (@fierevere)

    永子

    I checked the URL https://html5shim.googlecode.com/svn/trunk/html5.js and can′t be reached.

    because its ancient fossil. Google already removed it.
    full context is usually:

    <!--[if lt IE 9]>
    <script src="https://PATHTO/html5.js" type="text/javascript"></script>
    <![endif]-->

    where PATHTO can be theme folder, if html5.js shim is shipped with it.
    As you can see its for OLD-OLD IE.
    It does not get used by modern browser, and even being unavailable from Googlecode currently it does not cause any breakage, unless your visitor actually using IE, but that IE most likely cannot reach HTTPS now (due to TLS and SHA-1 deprecation).

    So.. can ignore or remove this completely. Report to theme author, its better if they will do that.

    You can change any string with the search and replace plugin. That will change any http to https or any other string.

    Subjected code is located in header.php of used theme.
    Plugins, like Better Search Replace, work with database only.

    But when i checked my site in jitbit.com/sslcheck it will show unsecured content contain so many urls.

    Consider this as a false positive report. Scanner is dumb, those urls are not being used by real browser.

    • This reply was modified 4 years, 6 months ago by Yui.

    Subjected code is located in header.php of used theme.
    Plugins, like Better Search Replace, work with database only.

    I know. I didn′t check the URL sent by the OP since It didn′t much sense to try to reach as you say and old url that doesn′t work anymore ??

    Thread Starter jeejoh

    (@jeejoh)

    Hi @fierevere , @ibertrix ,
    Thank you both for replying.

    @fierevere ,We will go with your suggestion.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to replace the links http to https’ is closed to new replies.