admin管理员组文章数量:1333625
I have use plugin Really simple SSL to enable my site to https. Everything is ok but when wordpress update my site automatically to 4.8.4. Only my homepage do not work for https otherwise another pages are ok. You can see some example in this image:
My homepage when loading:
My homepage when full load:
Another page is ok:
Inaddition infomation:
My homepage:
Another page:
Wordpress version: 4.8.4
Thank you in advance
I have use plugin Really simple SSL to enable my site to https. Everything is ok but when wordpress update my site automatically to 4.8.4. Only my homepage do not work for https otherwise another pages are ok. You can see some example in this image:
My homepage when loading:
My homepage when full load:
Another page is ok:
Inaddition infomation:
My homepage: https://winecellar.vn
Another page: https://winecellar.vn/ruou-cao-cap/ruou-chi-le
Wordpress version: 4.8.4
Thank you in advance
Share Improve this question asked Dec 7, 2017 at 10:12 mrleezoomrleezoo 111 silver badge2 bronze badges3 Answers
Reset to default 1Your home is working on SSL but some elements might not be loaded from https
but http
like third party images or scripts. Look in source of your home site generated by browser and search for http:
phrase to find which elements you should fix.
You may please use this query on your database to change url from http:// to https://
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_postmeta SET meta_value = REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_posts SET post_content = REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_posts SET post_excerpt = REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
UPDATE wp_posts SET guid = REPLACE(option_value, 'http://winecellar.vn/', 'https://winecellar.vn/');
Go to the page that is not loading secure. Right click on your mouse, click inspect. click console and you will find the error. Mine was my logo image was not loading secure. I simply deleted it from my page and then re-uploaded the same image. Bam! fixed. Some other possible places you can locate the error is right clicking the page and view page source. ctrl "f" and enter http in the search bar. It will let you find any other place you may have something loading not secure.
本文标签: httpsmy homepage does not have SSL but another page is ok
版权声明:本文标题:https - my homepage does not have SSL but another page is ok 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742349913a2458280.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论