Jump to content

Chrome "This page has insecure content." issue any fixes?


dflow

Recommended Posts

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  :wtf:

 

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>'.

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

  • 3 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.