Announcement

Collapse
No announcement yet.

No SSL Bounce with High Security

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    No SSL Bounce with High Security

    It would be possible for customers to limp though an Actinic site with IE security set to high if it was not for the SSL bounce. Every other bounce lets the user click on 'here.' to continue, but this bounce makes the site freeze.

    The page being built by ShoppingCart.pl should let the user continue manually.

    In ShoppingCart.pl, find this code:
    $sHTML = "<HTML><HEAD>\n" .
    "<SCRIPT LANGUAGE='JavaScript'>\n" .
    "<!-- \n" .
    "function onLoad() {document.Bounce.submit();}\n" .
    "// -->\n" .
    "</SCRIPT>\n" .
    "</HEAD>\n" .
    "<BODY OnLoad='onLoad();'>\n" .
    "<FORM NAME='Bounce' METHOD=POST ACTION='$sURL'>\n" .
    "<INPUT TYPE=HIDDEN NAME='ACTINIC_REFERRER' VALUE='$sReferrer'>\n" .
    "<INPUT TYPE=HIDDEN NAME='COOKIE' VALUE='$sCookie'>\n" .
    "<INPUT TYPE=HIDDEN NAME='CARTCOOKIE' VALUE='$sCartCookie'>\n" .
    "<INPUT TYPE=HIDDEN NAME='SESSIONID' VALUE='$sSessionID'>\n" .
    "<INPUT TYPE=HIDDEN NAME='DIGEST' VALUE='$sBusinessCookie'>\n" .
    $sHTMLParams .


    After the $sHTMLParams . line, add this line:
    "<br>Please wait for your browser to forward you to the next page or click <input type=submit name='here' value='here.'>\n" .

    The space and period at the end of the line is very important.

    Also, the page has two </HEAD> tags. The second </HEAD> should be </BODY>. It is after the "</FORM>\n" . line.

    Now customers can get through the ordering process with security set to high. Strange that this bounce was omitted. I heard from one customer that had this problem. I doubt that many customers has set their security above the default, but every lost order hurts.
    Bob Ladden

    #2
    Thanks for this.

    I'll add it to the knowledge base and also recommend it to the developers as a change.

    Comment

    Working...
    X