dflow Posted May 23, 2012 Share Posted May 23, 2012 im getting Chrome "This page has insecure content." issue any fixes? i have mixed css and javascripts being called for example '<script type="text/javascript" src="http://bp.yahooapis.com/2.4.21/browserplus-min.js"></script>'. '<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>'. calling them with https doesn't work very annoying Quote Link to comment https://forums.phpfreaks.com/topic/262971-chrome-this-page-has-insecure-content-issue-any-fixes/ Share on other sites More sharing options...
trq Posted May 23, 2012 Share Posted May 23, 2012 calling them with https doesn't work What exactly do you mean by this? Quote Link to comment https://forums.phpfreaks.com/topic/262971-chrome-this-page-has-insecure-content-issue-any-fixes/#findComment-1347890 Share on other sites More sharing options...
ignace Posted May 23, 2012 Share Posted May 23, 2012 Chrome "This page has insecure content." issue any fixes? It means you have http links on a https page. Change it to (note the missing http:): '<script type="text/javascript" src="//bp.yahooapis.com/2.4.21/browserplus-min.js"></script>'. '<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>'. Quote Link to comment https://forums.phpfreaks.com/topic/262971-chrome-this-page-has-insecure-content-issue-any-fixes/#findComment-1347903 Share on other sites More sharing options...
dflow Posted May 23, 2012 Author Share Posted May 23, 2012 Chrome "This page has insecure content." issue any fixes? It means you have http links on a https page. Change it to (note the missing http:): '<script type="text/javascript" src="//bp.yahooapis.com/2.4.21/browserplus-min.js"></script>'. '<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>'. for example the yahoo api cannot be called with https Quote Link to comment https://forums.phpfreaks.com/topic/262971-chrome-this-page-has-insecure-content-issue-any-fixes/#findComment-1347923 Share on other sites More sharing options...
Mahngiel Posted June 13, 2012 Share Posted June 13, 2012 for example the yahoo api cannot be called with https Then you'll need to host the files yourself. Quote Link to comment https://forums.phpfreaks.com/topic/262971-chrome-this-page-has-insecure-content-issue-any-fixes/#findComment-1353471 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.