Windows Disable: This page contains both secure and nonsecure items

Mobile
feeds
Welcome Login | Register

Windows Disable: This page contains both secure and nonsecure items
Reply Your Comments:
Click this button if you are interested in replying to this topic and leave your comments
Sent To Friend
CLick this button if you want to send this page to a friend.
Subsribe To Rss Feeds
Subscribe to RSS
CLick this button if you want to subscribe to this RSS Feed. You can use your browsers feeds burners if you have mozilla or internet explorer 7 or higher and keep up with updates.
  Forums Index
      » Windows Hosting Forums
        » » Windows Disable: This page contains both secure and nonsecure items
Windows Disable: This page contains both secure and nonsecure items
Post Description: windows disable this page contains both secure and nonsecure items Windows Hosting
Post Tags:
This Post Has Been Viewed 54573 Times Since Fri Aug 04, 2006 5:36 pm Author pinguin with 26 replies
Windows Disable: This page contains both secure and nonsecure items
Advertise On This Page




Sometimes when I visit some secured websites with https urls I keep getting this anoying popup window in Internet Explorer prompting me:

Securyt Informatin

This page contains both secure and nonsecure items:

Do you want to display the nonsecure items?

Yes No More Info

What can I do to get rid of this popup in my computer.

post picture


Leave Your Comments

Your Name
Your Email Address (Will Not Be Published)
Notify Me When Someone Replies to this Page
(An email will be sent to you when someone replies to your comments)
Your Comments
Include A Picture with your comments
Share
| More
Share this page by putting this URL in your comments to other websites like myspace, Facebook, Twitter friendster, Hi5, Groups, Boards, Forum or others. Just Copy and Paste this Code
URL:
To embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it.
Embed:
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums
BBCODE:
Subscribe Feeds
Webmasters - Exchange Links With Us. Add related websites to this topic
Add Link:
Links Related to : Windows Disable: This page contains both secure and nonsecure items

Comments and replies About Windows Disable: This page contains both secure and nonsecure items
:: 1 :: Reply #73 Reply By pinguin On Fri Aug 04, 2006 6:04 pm
pinguin:
I will show you how to get rid of this annoying popup window whenever you are visiting secured sites. Follow these steps that have been provided by Webune Support:

If you are a webmaster or have a website and your visitors are complaining to you about this error, visit this post by CLICKING HERE.

If you are a user, and what to get rid of the popup in your computer browser follow these instructions:

Step 1: Go to Tool >> Internet Options

post picture


Step 2: Select the "Security" Tab and then click on the "Custome Level" button

post picture

Step 3: Scroll down until you see the option: "Display mixed content". Select the option that says "Enable"

post picture


Step 4: Click Ok, Then you will get a "Security Warning" pop-up. Click Yes

post picture


Step 5. Click Ok also on the "Interner Options" windown that's on your screen.


DONE: Now whenever you visit a secured wep page, you will not get the popup you were getting before.

Step by Step Tutorial Guide Provided by: Webune Support

http://www.webune.com

.
:: 2 :: Reply #74 Reply By pinguin On Wed Nov 08, 2006 8:05 pm
pinguin:
Solution: Fix for secure and nonsecure items warning message

I run a secure phpBB forum that ONLY operates on port 443, SSL is required or the connection is denied. My users started requesting the ability to post youtube and google videos within the post.

I installed the [2.0.19] Youtube Video BBCode and the [2.0.21] Google Video and everthing worked perfectly, until I tested the feature in my browser and got the following warning message:


     Quote:
This page contains both secure and nonsecure items.

Do you want to display the nonsecure items?


AHH! How annoying. So I went about looking for a workaround for this and finally came up with my own solution, that is very easy.

Open includes\bbcode.php

Find
     Code:
// [email]user@domain.tld[/email] code..
$patterns[] = "#\[email\]([a-z0-9&\-_.]+?@[\w\-]+\.([\w\-\.]+\.)?[\w]+)\[/email\]#si";
$replacements[] = $bbcode_tpl['email'];


After Add
     Code:
// [youtube]YouTube URL[/youtube] code..
$patterns[] = "#\[youtube\]http://(?:www\.)?youtube.com/watch\?v=([0-9A-Za-z-_]{11})[^[]*\[/youtube\]#is";
$replacements[] = $bbcode_tpl['youtube'];


// [GVideo]GVideo URL[/GVideo] code..
$patterns[] = "#\[GVideo\]http://video.google.com/googleplayer\.swf\?docid=([0-9A-Za-z-_]*)[^[]*\[/GVideo\]#is";
$replacements[] = $bbcode_tpl['GVideo'];

// [GVideo]GVideo URL[/GVideo] code..
$patterns[] = "#\[GVideo\]http://video.google.com/videoplay\?docid=([0-9A-Za-z-_]*)[^[]*\[/GVideo\]#is";
$replacements[] = $bbcode_tpl['GVideo'];


Find
     Code:
$text = preg_replace($patterns, $replacements, $text);


After Add
     Code:
$text = str_replace("http://www.youtube.com/", "https://example.com/lounge/youtube/", $text);

$text = str_replace("http://video.google.com/videoplay", "https://example.com/lounge/googleplayer.swf", $text);
$text = str_replace("http://video.google.com/", "https://example.com/lounge/", $text);


Now heres the cool part, in your sites root web-accessible folder http://www.example.com/ add an .htaccess file with the following:


     Code:
RewriteEngine On
RewriteBase /
RewriteRule ^lounge/googleplayer\.swf(.*)$ http://video.google.com/googleplayer.swf$1 [L]
RewriteRule ^lounge/youtube/(.*)$ http://www.youtube.com/$1 [L]


and it worked!



http://www.htaccesselite.com/htaccess/fix-for-secure-and-nonsecure-items-vt128.html
:: 3 :: Reply #75 Reply By pinguin On Wed Nov 15, 2006 12:58 am
pinguin:
Thanks for this info. i need some clarifications on this.

In the below url, you have mentioned 'I basically did a str_replace on all posts text for http://video.google.com and http://youtube.com to change them to https://www.example.com/htaccess/ '.

Could you elaborate on this. Why do you change it to example.com etc...
Thanks.

http://www.htaccesselite.com/htaccess/fix-for-secure-and-nonsecure-items-vt128.html
:: 4 :: Reply #76 Reply By pinguin On Wed Dec 13, 2006 7:38 am
pinguin:
Changing the "Display Mixed Content" setting in IE 7 did not work for me. Regardless of what I set it to, I still see the message "This page contains both secure and non-secure items".

So what can I do to get IE not to show me this message??
:: 5 :: Reply #77 Reply By pinguin On Wed Jan 17, 2007 6:35 pm
pinguin:
[quote:1fa56dc810="sweetyt"]Thanks for this info. i need some clarifications on this.

In the below url, you have mentioned 'I basically did a str_replace on all posts text for http ://video.google.com and http ://youtube.com to change them to https ://www.example.com/htaccess/ '.

Could you elaborate on this. Why do you change it to example.com etc...
Thanks.

http ://www.htaccesselite.com/htaccess/fix-for-secure-and-nonsecure-items-vt128.html


Example.com is supposed to represent the url that the phpBB forum is hosted from. I didn't want to reveal the url of the site I was talking about.

This is elaborated on in much more detail at
http://www.askapache.com/2006/htaccess/mixed-ssl-content-warning-secure-fixed.html
Mixed SSL Content Warning Secure Fixed - AskApache
:: 6 :: Reply #254 Reply By brastic On Thu Feb 08, 2007 3:21 am
brastic:
congratulations, this is an execellent tutorial guide on showing how can i get rid of the this page contains both secure and nonsecure items warning
:: 7 :: Reply #3847 Reply By vicky On Sat May 19, 2007 1:51 am
vicky:
hellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohellohello
:: 8 :: Reply #15974 Reply By Prasad On Thu Aug 16, 2007 10:48 am
Prasad:
this is good solution for disable security information and it is useful for https urls.

thanks
prasad kr
:: 9 :: Reply #19891 Reply By botgurl On Wed Sep 12, 2007 12:06 pm
botgurl:
ms attributes this problem to iframe tags with no valid src attribute. worked when i referenced a blank html in iframe tags

support.microsoft /default.aspx?scid=kb;en-us;261188
:: 10 :: Reply #20108 Reply By eric On Fri Sep 14, 2007 8:02 am
eric:
exactly what i was looking for . thanks
:: 11 :: Reply #29924 Reply By Stella On Fri Nov 30, 2007 8:00 pm
Stella:
i have been reserching the past 3 month how to get rid of this anoying pop up and thanks to your tutorial i finally got rid of...thank you very much
:: 12 :: Reply #45994 Reply By Mahatab On Tue Mar 18, 2008 7:51 am
Mahatab:
thanks, my problem solved. i have successfully removed this security warning by placing src attribute value
:: 13 :: Reply #62920 Reply By Cherry On Tue Jul 22, 2008 8:14 pm
Cherry:
would like to know how to avoid the secure and non secure pop up.
:: 14 :: Reply #64634 Reply By Fazal On Sun Aug 03, 2008 4:21 am
Fazal:
please find the below msdn forms/blogs url, this will guide you to disable ie secure and nonsecure items prompts...

blogs.msdn /rextang/archive/2008/06/02/8567982 savvybytes /2008/07/09/how-to-disable-ie-nag-t
:: 15 :: Reply #80111 Reply By sgfgfgfgfg On Sun Nov 09, 2008 3:42 am
sgfgfgfgfg:
thanks piquin.very pleased you took the time to respond.
:: 16 :: Reply #82232 Reply By Ramanathan On Wed Nov 19, 2008 10:18 pm
Ramanathan:
what is the main reason getting pop up "both secure and nonsecure item". how can i avoid this in html and script level of code
:: 17 :: Reply #84230 Reply By tim On Mon Dec 01, 2008 3:34 am
tim:
menu - tools - internet options - security tab - internet zone (or whatever one you are in) - custom settings - miscelaneous - display mixed content (switch from prompt to ennable)
:: 18 :: Reply #87723 Reply By Michael On Sat Dec 27, 2008 5:07 am
Michael:
thank you, this was directly to the point and very helpful.
:: 19 :: Reply #90686 Reply By Binu On Mon Jan 19, 2009 10:39 pm
Binu:
after googling.. this is one option

when you receive the error message, click yes.
#

in internet explorer
, go to tools, internet options, click the security tab; make sure that in "select a zone..." window that internet is selected.
#

click custom level and scroll down about half way to "display mixed content" in the miscellaneous section.
#

change it from prompt to enable.
#

click ok, yes, and ok. the change should take effect immediately
:: 20 :: Reply #90841 Reply By Walid On Wed Jan 21, 2009 3:54 am
Walid:
always when i visit my email box i keep receiving this anoying poup what can i do?
:: 21 :: Reply #92871 Reply By wallpaperama On Thu Feb 05, 2009 1:21 pm
wallpaperama:
to walid daouk, i would follow the instructions given by:

reply #73 reply by pinguin on fri aug 04, 2006 6:04 pm
:: 22 :: Reply #103980 Reply By abe On Fri May 22, 2009 5:50 am
abe:
v ajkdhjksahdkasdaskjahdahsd
:: 23 :: Reply #104913 Reply By mega On Sun May 31, 2009 11:50 am
mega:
i cant see any of the tutorial =[
:: 24 :: Reply #110605 Reply By ruth On Sun Jul 26, 2009 4:51 am
ruth:
please rid me of those non secure items

i am having trouble receiving pop ups from my friends

i need no non secure items

thank you
:: 25 :: Reply #111323 Reply By anhdo On Sat Aug 01, 2009 11:30 am
anhdo:
i could not se the guide
:: 26 :: Reply #111585 Reply By FE On Tue Aug 04, 2009 6:53 am
FE:
how do i disable annoying popup?