Secure and Secure items problem

Discussions of secure PHP coding. Security in software is important, so don't be afraid to ask. And when answering: be anal. Nitpick. No security vulnerability is too small.

Moderator: General Moderators

Post Reply
vinoth
Forum Contributor
Posts: 113
Joined: Thu Aug 02, 2007 3:08 am
Location: India
Contact:

Secure and Secure items problem

Post by vinoth »

Hi all,

I am using https:// on check out page,
In IE it asks the pop-up "This page contains both secure and non secure items with yes/no option"..

Is it any possible way to remove the pop-up.

Please provide some suggestion,guideline to remove the pop up

Thanks in Advance
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: Secure and Secure items problem

Post by Benjamin »

You probably have javascript, css or image files that are still being called from an unencrypted http connection.
vinoth
Forum Contributor
Posts: 113
Joined: Thu Aug 02, 2007 3:08 am
Location: India
Contact:

Re: Secure and Secure items problem

Post by vinoth »

I changed the links of all Images,Javascript and CSS to relative path.

And also I view the source from fire bug, It all refer to secure page only,
But still in IE I got the pop-up
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: Secure and Secure items problem

Post by Benjamin »

View the source code for the page and search for http://

Any results?

Can you post a link to the page in question?
vspin
Forum Commoner
Posts: 33
Joined: Tue Apr 29, 2008 6:31 pm

Re: Secure and Secure items problem

Post by vspin »

Usually what I do in your case, when all else fails, is save the file as HTML, remove the javascript from the source, then run the page through https. If you still get the message, remove some more html code and try again until you have removed the right block of code causing the problem.
Post Reply