Quick Version of problem:
In the cart, when you click on the product reference number (NOT the description) the kmaShowPopUp is executed (a duplicated version of the ShowPopUp script that includes some character replacement). When using IE, it comes up with "HTTP 403.2 - Forbidden: Read Access Forbidden". In Firefox, I get the Extended Popup just how it should be.
URL: www.raprec.com/support.html
userid/pw: testuser/testuser
ADDITIONAL INFORMATION:
Looking at the properties for the popup window
IE is calling: http://www.raprec.com/cgi-bin/info_4_C6X_S.html
Firefox is calling: http://www.raprec.com/acatalog/info_4_C6X_S.html
The kmaShowPopUp code
(Side note - I'm sure there's a more efficient way to do the replace...I'll cross that bridge later)
Call from Act_ShoppingCartXML
Help.
In the cart, when you click on the product reference number (NOT the description) the kmaShowPopUp is executed (a duplicated version of the ShowPopUp script that includes some character replacement). When using IE, it comes up with "HTTP 403.2 - Forbidden: Read Access Forbidden". In Firefox, I get the Extended Popup just how it should be.
URL: www.raprec.com/support.html
userid/pw: testuser/testuser
ADDITIONAL INFORMATION:
Looking at the properties for the popup window
IE is calling: http://www.raprec.com/cgi-bin/info_4_C6X_S.html
Firefox is calling: http://www.raprec.com/acatalog/info_4_C6X_S.html
The kmaShowPopUp code
Code:
function kmaShowPopUp(kUrl, nWidth, nHeight) { kUrl = kUrl.replace(/-/g,"_"); kUrl = kUrl.replace(/ /g,"_"); kUrl = kUrl.replace(/\//g,"_"); kUrl = kUrl.replace(/\\/g,"_"); kUrl = kUrl.replace(/\./g,"_"); window.open(kUrl + '.html', 'kActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable'); if (!bPageIsLoaded) { window.location.reload(true); } }
Call from Act_ShoppingCartXML
Code:
<a href="javascript:kmaShowPopUp('info_NETQUOTEVAR:PRODREF',400,400);">NETQUOTEVAR:PRODREF</a>
Help.
Comment