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
Related
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.
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
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.
I am trying to code a website that uses PHP protocol toggling to switch from HTTP and HTTPS on the fly but since I have coded my website in JQuery mobile now, it seems to just hit the "error loading page" and never loads those sections of my website. What might be causing that?
Although it is slightly different in nature, this question will help you resolve your issue: AJAX calls to untrusted (self-signed) HTTPS fail silently.
Because you are most likely using a self-signed certificate or a certificate for a different subdomain, AJAX calls will fail by default since they cannot accept the certificate for security purposes.
You can add rel="external" in every tag to redirect to from http => https or https => http
I have php application in https mode. And the parent(https) contains an iframe. The iframe src will be a http file. The parent and the iframe are in the same domain. But i am not able to access the iframe source using http.
Is there any way in to fix this issue using php or javascript?
Thanks in advance.
Since you tagged this javascript, I assume you mean to access the iframe source using javascript.
Because of the same origin policy in your browser, pages can communicate across different windows or iframes only when their protocols (http vs. https), port, and domain are the same.
Since your protocols are different (http vs. https) you cannot use javascript in your page to access the document in the iframe.
Here is more info about same origin policy:
https://developer.mozilla.org/En/Same_origin_policy_for_JavaScript