Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 8 of 8

Thread: Question about pop-up

  1. #1
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default Question about pop-up

    When a customer goes to view their basket on our site within IE they get the 'Security Warning' pop-up appear asking them "Do you want to view only the webpage content that was delivered securely?"

    It is because all of our images, store logo's etc are not being delivered securely, how do I stop this happening and make sure that the customer doesnt get this pop-up?
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  2. #2
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    The only "globally effective" ways around this are as follows:

    • Deliver all images via https://
    • Use relative image links (this means the images will have to be on the site)
    • Turn of SSL (probably not a good idea)


    This is a browser security warning to let users know there are insecure items on the page and it's impossible to subvert this using code.
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  3. #3
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    We have changed the custom template we have on the checkout page so all images are secure. However the pop up still shows in IE. When we reject insecure images our navigation bar disappears. Here is our navigation code, any help to make it secure would be helpful. Thanks.

    Code:
            <div id="etNav">
                <ComponentArt:Menu id="PageMenu"
                  ClientScriptLocation="skins/componentart_webui_client/"
              ImagesBaseUrl="https://www.e-tradecounter.co.uk/skins/skin_7/images/"
                  ScrollingEnabled="true"
              ScrollUpLookId="ScrollUpItemLook"
              ScrollDownLookId="ScrollDownItemLook"
                  Orientation="horizontal"
              CssClass="TopMenuGroup"
              DefaultGroupCssClass="MenuGroup"
              DefaultItemLookID="DefaultItemLook"
              DefaultChildSelectedItemLookID= "SelectedItemLook"
              DefaultSelectedItemLookID= "SelectedItemLook"
              DefaultGroupItemSpacing="0"
              ExpandDelay="0"
              ExpandDuration="0"
              ExpandSlide="None"
              ExpandTransition="None"
                  CascadeCollapse="false"
                  CollapseDelay="0"
                  CollapseSlide="None"
                  CollapseTransition="None"
              EnableViewState="false"
              runat="server">
            <ItemLooks>
                          <ComponentArt:ItemLook LookId="DefaultItemLook" HoverCssClass="MenuItemHover" LabelPaddingTop="2px" ActiveCssClass="MenuItemDown" LabelPaddingRight="15px" LabelPaddingBottom="2px" ExpandedCssClass="MenuItemDown" LabelPaddingLeft="5px" CssClass="MenuItem" />
                        <ComponentArt:ItemLook LookId="TopItemLook" CssClass="TopMenuItem" HoverCssClass="TopMenuItemHover" LabelPaddingLeft="0" LabelPaddingRight="0" LabelPaddingTop="0" LabelPaddingBottom="0" />
                        <ComponentArt:ItemLook LookId="TopItemLookTwo" CssClass="TopMenuItemTwo" HoverCssClass="TopMenuItemTwoHover" LabelPaddingLeft="0" LabelPaddingRight="0" LabelPaddingTop="0" LabelPaddingBottom="0" />
                      <ComponentArt:ItemLook LookID="ScrollUpItemLook" ImageUrl="scroll_up.gif" ImageWidth="15" ImageHeight="13" CssClass="ScrollItem" HoverCssClass="ScrollItemH" ActiveCssClass="ScrollItemA" />
                      <ComponentArt:ItemLook LookID="ScrollDownItemLook" ImageUrl="scroll_down.gif" ImageWidth="15" ImageHeight="13" CssClass="ScrollItem" HoverCssClass="ScrollItemH" ActiveCssClass="ScrollItemA" />
                      <ComponentArt:ItemLook LookID="BreakItem" ImageUrl="break.gif" ImageHeight="1" ImageWidth="100%" />
                      <ComponentArt:ItemLook LookId="SelectedItemLook" CssClass="SelectedMenuItem" LabelPaddingLeft="0" LabelPaddingRight="0" LabelPaddingTop="0" LabelPaddingBottom="0"  />
            </ItemLooks>
            <ClientEvents>
                <ItemSelect EventHandler="YourFunction" />
            </ClientEvents>
            </ComponentArt:Menu>
                    <div id="etNavBar"><img src="https://www.e-tradecounter.co.uk/skins/Skin_(!SKINID!)/images/e-trade/background/navBar.gif" alt="" /></div>
            </div>
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  4. #4
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    Any ideas?
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  5. #5
    Dimmer is offline Member
    Join Date
    May 2008
    Location
    London
    Posts
    40

    Default

    Hi

    Load the checkout page and view the source, search for http: - you will see that you have quite a few items that are being referenced as non secure.

    It looks like google checkout javascript is one culprit and perhaps your right menu, isnt using relative paths but http:....

    Try referencing them with // instead of http:// that shoudl fix it.

    Alan
    Alan
    Version (Code/DB): AspDotNetStorefront ML 7.1.0.0/7.1.1.0 - with modifications
    www.stuff-uk.net

  6. #6
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    Yep that worked. We also had some problems with the CSS calling images with http. All sorted now thanks.
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  7. #7
    ChinaToddm is offline Junior Member
    Join Date
    May 2009
    Posts
    11

    Default I am have the same problems

    I can not find the solution not sure what files to look in first

    my site is www.mccluretables.com

    I have found two possibles but not sure where the CSS is call up the information I have contact my developer but any help I would appreciate

  8. #8
    BFG 9000 is offline Senior Member
    Join Date
    Oct 2006
    Location
    South UK
    Posts
    882

    Default

    You should start by looking in your javascript files - try removing them one by one to see when the problem goes away - then you can use an xmlpackage to only load that script on a non-secure page.


    TTFN

    BFG