I am trying to get comersus shopping cart version 7.07 to work on my site. I want to do it all through paypal as it has the stuff set for paypal and when I go to confirm the order, I get the following error:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'arrayEncrypted(...)'
/shopping/includes/encryption.asp, line 154
Here are lines 143-158 of encryption.asp
function transformToCHR(plaintxt)
' transform to CHR, insert into array
dim returnText, arrayEncrypted
arrayEncrypted = split(plaintxt, "|")
returnText=""
' transform to CHR
for a = 1 to ubound(arrayEncrypted)
returnText=returnText&CHR(arrayEncrypted(a))
next
transformToCHR = returnText
end function
red line is 154. Do you guys have any idea what could be the problem? I appreciate your help!
-wws