Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Pop up on secure pages


Guest

Recommended Posts

hi,

 

i currently installed logos for reseller ratings and bizrate in my footer...and i have been getting the secure page alart since. "This page contains both secure and non secure pages" i also have a Christmas logo on the main page and that is also part of the problem...can someone please let me know if there is a simple fix for this problem...i have tried reading and searching for a solution on the forum but i can't find a definative answer so someone please help me out. my store is currently live. bestvalueplus.net.

Link to comment
Share on other sites

I've run into that problem before and found that the images also need to be in the secure side of your server. Once you place them there, you'll need to change the call for the images.

Just when you knew all life's answers; Someone had to go and change all the questions!

Link to comment
Share on other sites

I've run into that problem before and found that the images also need to be in the secure side of your server. Once you place them there, you'll need to change the call for the images.

thank you for the reply...

 

the only problem is that the images are links from reseller ratings and bizrate...they are not actually images that i can just dump into my secure side.

Link to comment
Share on other sites

From my experience, even images that are pulling from other websites will give you that error as well. Perhaps you can request from the owner of the images to authorize you in writing the images you need. Then upon approval you'll be able to copy them and use them on your secure servers.

Just when you knew all life's answers; Someone had to go and change all the questions!

Link to comment
Share on other sites

can you use a variation of this to link to your bizrate image?

 

<?php echo '<a href="http://www.some-other-site.com">Your Text Here</a>'; ?>

 

Replace the a href with img scr whatever?

 

As for the xmas pic well its over so its no problem right..lol

The Wiki Docs: Read them, live them and be thankful for them!

Link to comment
Share on other sites

I fixed the Christmas logo i still need help with the logos in my footer though so, any help will be appreciated. thank you

 

ps. i plan on moving the logos to the right column but i know i'll have the same security problem and that's why i want to find the solution to the problem first.

Link to comment
Share on other sites

When I go to your site and the popup with secure/unsecure items came up I hit "do not display unsecure items" and the only unsecure item no to show was your bizrate image so I think the reseller on is good to go.

 

Did you try changin this like I said?

 

<img src="https://medals.bizrate.com/medals/dynamic/68668_medal.gif" alt="BizRate Customer Certified (GOLD) Site" width="125" height="73" align="top" border="0" target="_blank"></a>

 

to

 

<?php echo '<img src="https://medals.bizrate.com/medals/dynamic/68668_medal.gif" alt="BizRate Customer Certified (GOLD) Site" width="125" height="73" align="top" border="0" target="_blank"></a>'; ?>

 

This is a wild guess as I am know programer but since it helps us learn let give it a whirl.

 

Also first time i ever enter your site it gave me the big certificate popup..you know the do you want to trust secure content from XXXX

The Wiki Docs: Read them, live them and be thankful for them!

Link to comment
Share on other sites

When I go to your site and the popup with secure/unsecure items came up I hit "do not display unsecure items" and the only unsecure item no to show was your bizrate image so I think the reseller on is good to go.

 

Did you try changin this like I said?

 

<img src="https://medals.bizrate.com/medals/dynamic/68668_medal.gif" alt="BizRate Customer Certified (GOLD) Site" width="125" height="73" align="top" border="0" target="_blank"></a>

 

to

 

<?php echo '<img src="https://medals.bizrate.com/medals/dynamic/68668_medal.gif" alt="BizRate Customer Certified (GOLD) Site" width="125" height="73" align="top" border="0" target="_blank"></a>'; ?>

 

This is a wild guess as I am know programer but since it helps us learn let give it a whirl.

 

Also first time i ever enter your site it gave me the big certificate popup..you know the do you want to trust secure content from XXXX

i was working on the site when you entered...the big Cert that popped up was from the bizrate. when i added "s" to the http in the url for both bizrate and reseller ratings...i don't get the security pop up on my site but i get the big cert which i read it and it was from bizrate so i'm not sure how to fix that. The only way to avoid that is to change the https:// to http:// but then i get the security pop up again...and also when i go to the reseller ratings (after changing the url to hppts://) i get the security pop up on reseeler ratings website...so right now i have no clue what to do next...i'm just going to play around and see what i come up with.

 

Any help will be appreciated guys...Thank you

Link to comment
Share on other sites

hey Trendyfashion, isn't there a way to prevent the two logos from showing up when in secure mode? do you know? i know something like that could be done but i'm not sure how.

 

i thought my biggest problem was going to be the Christmas logo and the live help logo but those seem to be fine...i really need to get these logos right so i can move to other things...i'll keep on reading the forum and see what i can come up with...Thank you

Link to comment
Share on other sites

Okay guys, i just figured out to fix my secure and non secure problem...and i moved the logos from the footer to the column_right, the site is almost complete to my satisfaction. one thing i would ike help on is how to put some space between the two logos. i know this might be a very simple or even stupid question but i'm not sure how to do that...and my last question will be SSL related. when i log in everything seems to be fine. i can go through the checkout process without any problems but when i click on "home" on the actual website (not the browser), the page becomes http:// and not https://, but then i'm still logged in. is this how the cart is suppose to function or can i fix this problem....any little help will be greatly appreciated. thank you

Link to comment
Share on other sites

It's not the location that was the problem it is in the way you call the image. Here is my header where I had this problem also. Due to my lack of know how I originally had the header logo linked by http://www. blah blah...this made the secure/unsecure popup. Here is the correct way, works for both header and footer.

 

<!--table--><table border="0" width="<?php echo PAGE_WIDTH; ?>" align="center" cellspacing="0" cellpadding="0">

<tr class="header">

<td valign="middle" align="center"><?php echo tep_image(DIR_WS_IMAGES . 'logo_2.jpg'); ?></td>

</tr>

</table>

 

This is covered in the WIKI DOCS!!! READ THIS...It explains EVERYTHING!

The Wiki Docs: Read them, live them and be thankful for them!

Link to comment
Share on other sites

It's not the location that was the problem it is in the way you call the image. Here is my header where I had this problem also. Due to my lack of know how I originally had the header logo linked by http://www. blah blah...this made the secure/unsecure popup. Here is the correct way, works for both header and footer.

 

<!--table--><table border="0" width="<?php echo PAGE_WIDTH; ?>" align="center" cellspacing="0" cellpadding="0">

<tr class="header">

<td valign="middle" align="center"><?php echo tep_image(DIR_WS_IMAGES . 'logo_2.jpg'); ?></td>

</tr>

</table>

 

This is covered in the WIKI DOCS!!! READ THIS...It explains EVERYTHING!

Hey, are you saying that the way i have it right now is wrong? i don't get any pop ups or anything...the site is working the way i want it...there's no security issues right now...the only thing that i want to know is why i can log into my website okay, and able to checkout just fine but when i click home to go back to home page while in secure mode...my url reads http:// and not https:// i just think that is weird because i'm still logged in while it's showing https://.

 

also, i would like to know how to put some space between the two logos...can you help on that as well.?? thank you

Link to comment
Share on other sites

P.S....you site looks fantastic but are going to have surfers with 21"+ monitors? I have a 17" set at 800x600 and your side scroll on that site would make me leave very quickly. Just my opinion..I hate to scroll sideways.

hey...how come it doesn't give me the scroll on my 17 inche screen....i have both 18 and 17 screen and i don't get the left scroll on either of them...but i think someone else complained about the scrolling...i'll look into it. Thank you

Link to comment
Share on other sites

Nope not saying your wrong at all. I forgot your problem was the bizrate logo. The wiki docs I linked to address this is though. As far as the space I dont know how you added them but an easy way is use the "cellpadding" or "cellspacing" if its in a table. or maybe just add a <br>. Not sure what you got it in..probably a <table>.

 

As far as the switch back to a non-ssl page I am not sure, been working on this myself. Are you going back to catalog/index.php? or an .html file? If it is going back to catalog/index.php my guess would be the url's in the config for ssl are wrong.

 

My browser is IE6.0 and yeah baby there is a ton of side scroll...about 3 inches worth for me.

The Wiki Docs: Read them, live them and be thankful for them!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...