avoid "This page contains both secure and non secure items" warning - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T01:37:20Zhttp://stackoverflow.com/feeds/question/588327http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning2avoid "This page contains both secure and non secure items" warningHerman2009-02-25T23:06:12Z2009-03-02T16:42:34Z
<p>Hi all:</p>
<p>We are thinking to SSL enabled part of our website, but some page contains ads from third party vendor (like Google AdSense). I'd think this will create a annoying problem for our users since they are going to see warning message like "This page contains both secure and non secure items" when they view a page with ads. However, when I browse to Gmail with https instead of http, I don't see that warning in firefox. Does anyone know how Gmail hide this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning/588335#588335-2Answer by webdtc for avoid "This page contains both secure and non secure items" warningwebdtc2009-02-25T23:07:58Z2009-02-26T02:31:29Z<p>Check AdSense's developer and installation docs. I think they might have special code to place on https sites. I know Google Analytics does.</p>
<p>edit: looks like AdSense does not support SSL. Perhaps if you only used text ads it will work?</p>
<p>edit 2: I guess the text ads don't work either since there are a few images used even in the text only ads.</p>
http://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning/588340#588340-2Answer by Eric Willis for avoid "This page contains both secure and non secure items" warningEric Willis2009-02-25T23:09:16Z2009-02-26T01:29:35Z<p><strike>I am pretty sure all you do is replace the http with https. AdSense is published over both. No big changes :)</strike></p>
<p>*Update: I'm 100% wrong. I misremembered what I thought I was thinking.</p>
http://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning/588344#5883447Answer by ahockley for avoid "This page contains both secure and non secure items" warningahockley2009-02-25T23:10:09Z2009-02-25T23:10:09Z<p>Google's documentation indicates this is a known issue and does not offer a workaround: <a href="https://www.google.com/adsense/support/bin/answer.py?answer=10528" rel="nofollow">https://www.google.com/adsense/support/bin/answer.py?answer=10528</a></p>
http://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning/588374#58837411Answer by bobince for avoid "This page contains both secure and non secure items" warningbobince2009-02-25T23:19:31Z2009-02-26T09:58:24Z<blockquote>
<p>some page contains ads from third party vendor (like Google AdSense)</p>
</blockquote>
<p>Then the browser is right — that isn't secure.</p>
<p>With AdSense and most other ad networks you are given a link to JavaScript. When you refer to any external <script>, you are giving complete trust over the contents of your page to the external script provider. You need to trust them to do only what they say they're going to do (show an ad), and not something nefarious like take over the login form from the page it's on and steal values you type into it, or, if the “ad” script were included on your bank account page, automatically empty out all your money.</p>
<p>So external scripts are a trust problem, but if you are using a vendor that provides an HTTPS interface to their ads, then at least it's only one known party you have to trust. If the ad provider only has an HTTP interface, then you're sending out your trust to anyone who can grab control with a man-in-the-middle or similar attack. You are effectively reducing the trust level of your entire page to that of plain unencrypted HTTP, so the browser is quite correct to complain that the page isn't actually any more secure than any old HTTP site.</p>
http://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning/588432#5884321Answer by MrChrister for avoid "This page contains both secure and non secure items" warningMrChrister2009-02-25T23:39:22Z2009-02-26T03:52:25Z<p>Since this is the answer for Analytic you can use this to not show ads on your secure pages</p>
<pre><code>if ("http:" == document.location.protocol) { /*show your adds here*/ }
</code></pre>
<p>I got this idea from how I do analytics on my sites</p>
<pre><code><script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
</code></pre>
<p>I admit this means you can't show ads on your secure pages, but you probably don't want Google reading your secure pages contents and showing ads anyways. (That is a cop out and making excuses for Google, but as mentioned, they just don't support it)</p>
<p>To answer your GMail question... (using Firebug here, so I could be interpreting this wrong)</p>
<ol>
<li>I login to gmail with the always secure connection. No ads.</li>
<li>I turn on the console to see what connections gmail makes.</li>
<li>I clear the console</li>
<li>I click a message that has ads shown to the right.</li>
</ol>
<p>Gmail only made two calls. First a get to https://mail.google.com that I am guessing is my email. The second was a POST to https://mail.google.com/mail/channel/</p>
<p>I am guessing (everybody else correct me) Gmail requests a post from a proxy that serves the ads. </p>
<p>GMail sends content to proxy, proxy gets ads, proxy sends content back to Gmail. All securly.</p>
<p><strong>TOTAL GUESS THERE</strong></p>
<p>Thanks for the downvote but no explanation about what wasn't helpful</p>
http://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning/588481#5884810Answer by Sam Hasler for avoid "This page contains both secure and non secure items" warningSam Hasler2009-02-25T23:53:24Z2009-02-26T12:51:34Z<blockquote>
<p>"Does anyone know how Gmail hide this?"</p>
</blockquote>
<p>Short answer: they use https to fetch the ads. Looking through the Net tab in <a href="http://www.getfirebug.com/" rel="nofollow">Firebug</a> for GMail's page load I see the ads that are on the page in a request with the URL <code>https://mail.google.com/mail/?ui=2&ik=bbff8a9f5c&view=ad&ak=is00jux7yq7kgk730lqdkxklz03d9d8</code> so it looks like they do have a way to serve ads over https <strong>but only for their own sites</strong>.</p>
http://stackoverflow.com/questions/588327/avoid-this-page-contains-both-secure-and-non-secure-items-warning/590434#5904341Answer by Mauro for avoid "This page contains both secure and non secure items" warningMauro2009-02-26T13:00:26Z2009-03-02T16:42:34Z<p>if you are trying to include non-secure content and have control over what is displayed, you could write a handler that takes a url as a parameter.</p>
<p>As the handler is hosted in SSL it can fetch the html, and stream it out back to the browser through SSL. in effect its acting as a small proxy for you.</p>
<p>I've done this for a number of projects in the past to get to files from within a network without exposing the actual network itself.</p>
<p>using the information here: <a href="http://www.csharp-station.com/HowTo/HttpWebFetch.aspx" rel="nofollow">http://www.csharp-station.com/HowTo/HttpWebFetch.aspx</a> you could easily adapt it to take a parameter (the actual url you want to fetch)...</p>
<p>so in your rendered page you would call https://my.domain.com/pages/HttpWebFetch.aspx?url=<a href="http://ads.google.com/" rel="nofollow">http://ads.google.com/</a> the HttpWebFetch.aspx would then retrieve and relay the page content over https thereby removing the secure/insecure warnings.</p>