Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm getting the good ole' "This page contains both secure and nonsecure items." dialog in IE when connecting to an HTTPS site. No big deal... I've just got something coming in over a non-secure connection so that should be an easy fix, right?

So I go into "View > Web Page Privacy Policy..." to look to see where I've included an HTTP file, and this is what I see...

https://blah/path/to/file.htm
https://blah/path/to/file.js
http://blah:443/path/to/file.css

Um... ok... so... there is an HTTP only URL being requested, but it is going over port 443 ("https://blah/" is shorthand for "http://blah:443/" EDIT: No it's not, actually [see slugster's answer/my comments below]) so...

What is the deal with this!? IE 7.0.5730.13 can't possibly be THAT stupid, can it?

Is there an IIS setting that needs to be tweaked?

share|improve this question

1 Answer

up vote 3 down vote accepted

You've specified the port, but you have also specified the protocol as normal (non-secure) http. It isn't IE being stupid - you are expecting it to cover for your mistake.

This is normally the result of using an absolute path somewhere in your code instead of a relative path.

share|improve this answer
Yep, one of my server guys just said the same thing! It was my (incorrect) understanding that "blah:443/"; was shorthand for "blah/"; in in fact they (HTTP and HTTPS) are two distinct protocols. Muchos Danke! – Campbeln Jun 8 '10 at 1:54
Now I guess the question is... why don't the other browsers complain? (Though I see now that FF does say the connection is "... partially encrypted") – Campbeln Jun 8 '10 at 1:57
Oh... as to the cause... I have a central "BaseURL" function that was written without looking to see if the connection was secure or not, as again I figured specifying the port was enough. Agh, fruit of the poisonous tree =) – Campbeln Jun 8 '10 at 1:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.