I have a question, I just had a SSL certificate installed on my drupal site using shared hosting...
and on the front page now it says "only secured content is displayed" in IE. How do I find which content is NOT secure on this page?
|
I have a question, I just had a SSL certificate installed on my drupal site using shared hosting... and on the front page now it says "only secured content is displayed" in IE. How do I find which content is NOT secure on this page? |
||||
|
|
|
You could fire up Fiddler to see what exactly IE is requesting over regular HTTP. In Fiddler's default configuration, HTTPS requests will show up with a lock and
|
|||
|
|
|
Also in chrome if you "inspect element" on a page it opens the "Elements Panel in the Dev tools. From there chose the Network section. As you mouse over every request the page makes it will give you the full url the page used to request it. look for any that are not https and you will have your culprits. Chances are you have calls to absolute urls as opposed to relative urls, so it is forcing http instead of using the implied https of the page. |
|||
|
|