Please help anyone my php youtube grabber site https://mymovies24.in not working HTTPS all video displaying page but HTTPS working other page example mymovies24.in/category , mymovies24.in/contact-us etc
Please any solution plz
Youtube thumbnail URLs are http, not https, therefore web browsers consider your pages as non secure, because of mixed content (http + https). Update all your pages' resources to be https, no exception.
Related
I have recently moved my WordPress website from HTTP to HTTPS.
But when i load my webpage with HTTPS the stylesheets doesn't load due to mixed contents . what are the changes i need to do to get it work.
I am using AWS Certificate manager with ELB .
I followed this tutorial and now my admin panel is not loading as well with an error of ERR_TOO_MANY_REDIRECTS
Please Assist
Make sure all of your CSS links are called with HTTPS. Check your console, it will tell you which url are problematic.
Make sure all of the links in your .css files are in HTTPS too, or relative path (background-image urls, fonts urls etc.)
Try to use this Wordpress plugin, it will fix all of yours links.
I'm using the Twitter API PHP wrapper to load content from the Twitter API onto my secure WordPress site. But I'm getting mixed content warnings in the Chrome console as the data it's returning isn't secure.
Is this something I can safely ignore or is there a way to load secure content through the Twitter API?
The twitter API javascript files or maybe even an image are being referenced via http://. Check all files you target on the twitter website and change the path to https://. If you post the code you are using i can help better.
If changing to https doesnt help, press f12 and open up the developer tools. Any ssl errors will be in the console. This will help you find the files that are being referenced as http instead of https
I have bought https for my website. my website images showing with http://....
so when I use https in browser, it is not showing. so I want to change it in htaccess to detect that both.
No need force http or https.
need to work both as well according to users request
i have a domain name hosted on https and on a page I am using a with an external tool, that is not under https
the problem is that it is not loaded as it is under http
Is there a way to solve this? any idea?
Use without http and https. ie) url like //www.domain.com
Folks,
I am newbie to SSL certificates.
We just put SSL for our website, which developed PHP codeigniter framework.
My site is under https protocol. If I call the other url from that website's page, it also showing in https prefixed..
That child url is third party url, which needs to call from javascript. It is available in only http, not in https.
I am mentioning
function {
host:'abc.des.com';
}
In my firebug console the response shows https prefixed before this url. But I want response as in only http.
Hope someone will guide me in this.