I have been trying to track down a non secure item on the checkouk and i came across the postcode anywere script.
on V9 the script uses https on v10 its using http
V9Script
V10 script
having changed this script to be https all seems to be working fine now, can Actinic confirm if this is a bug or a fail from the upgrade?
Cheers
Darren
on V9 the script uses https on v10 its using http
V9Script
Code:
<SCRIPT LANGUAGE=JAVASCRIPT SRC="https://services.postcodeanywhere.co.uk/popups/javascript.aspx?account_code=<actinic:variable name="ALPAccountCode" />&license_key=<actinic:variable name="ALPInvoiceLookupLicense"/>"></SCRIPT>
Code:
<SCRIPT LANGUAGE=JAVASCRIPT SRC="http://services.postcodeanywhere.co.uk/popups/javascript.aspx?account_code=<actinic:variable name="ALPAccountCode" />&license_key=<actinic:variable name="ALPDeliveryLookupLicense"/>"></SCRIPT>
Cheers
Darren
Comment