I setup payment processing via a Hosted Payment Page
. I am using a full redirect and made sure to include a full website in the redirect.init
method (http://WEBSITE/response.php)
When I do a transaction I get the following errors:
Your transaction has been successful but there was a problem connecting back to the merchant's web site. Please contact the merchant and advise them that you received this error message.
Full Page Redirect Code:
<script>
$(document).ready(function () {
jsonFromRequestEndpoint = <?php echo $hppJson; ?>;
RealexHpp.setHppUrl("https://pay.sandbox.realexpayments.com/pay");
RealexHpp.redirect.init("creditSubmit", "https://WEBSITE/response_globalPay.php", jsonFromRequestEndpoint);
$('#creditSubmit').click();
});
</script>
Please be sure that you are defining your Hpp Response URL ("https://WEBSITE/response_globalPay.php") only on the client side. Make sure that you are not defining it again in the server side while generating the payment request json.
I was doing the same mistake of defining it on the client side as well as server side code where I was generating the payment request json.