Re: Nixaks Sagepay Form Module
Please Please, can someone help me with this problem. I don't seem to be able to find a solution at all.
It won't go through to the sagepay payment pages - it just get stuck on the checkout confirmation page with no option to progress. It has all the billing information and the costs/delivery costs and then the page just ends. No Confirm button and not footer.
Please can someone help me. Thank you.
Re: Nixaks Sagepay Form Module
Quote:
Originally Posted by
kransom
I found that for some reason I was losing the crypt variable frm the URL/GET values. I don't know if this was a host related issue or something else as when I did a print_r($_GET) that values were not there but if I checked the $_SERVER QUERY_STRING the crypt value information was there.
Not sure what caused it but to get around it I used the following code:
In the before_process function in the sagepay_form.php file -
if (!isset($_GET['crypt'])) {
//for some reason the crypt value is missing -
//we need to get it out of the SERVER QueryString and parse it into an array
if (isset($_SERVER['QUERY_STRING'])) {
$query = $_SERVER['QUERY_STRING'];
//now split
$query_var = parse_str($query);
if (count($query_var) > 0) {
if (isset($query_var['crypt']))
$crypt = $query_var['crypt'];
}
}
} else
$crypt = $_GET['crypt'];
I then use the $crypt value instead of the $_GET value.
All fixed thankfully.
Could you give a bit more detail on where you inserted this code? where you then had to change the code to use the new "$crypt" ?
I think I have the same issue and have been trying to integrate your code but so far just getting the dreaded white screen...:(
Re: Nixaks Sagepay Form Module
Very Quick Question Can This Mod do the Sage Server/ In Frame Payment Solution. The one where they don't leave the site.
Re: Nixaks Sagepay Form Module
Does the Sagepay module work on Zencart 1.5.0?
Re: Nixaks Sagepay Form Module
I too have the error: 69053
I can't seem to figure out what the problem is, but I've had to disable the payment module and solely use Paypal payments until there is a solution. And orders through sagepay not appearing in the zencart orders section.
Please can anyone help?