Thanks Nicolas,
I found the code that created this problem. What made it difficult was that it sort of depended on the session. As long as I was in my session it would go to the gateway, but changing browser and then getting a new session broke it up.
I had some stuff in the _end.php file that created the problem, removed it and now it works again.
So now I have a minor problem with the confirmation emails.
I have this code:
if($data->order_payment_method=="auriga"){
$paymentClass = hikashop::get('class.payment');
payment = $paymentClass->get($data->order_payment_id);
if($data->order_status=="confirmed"){
echo "Payment approved";
}
else
{
echo "Payment wasn't approved";
echo "<br/><br/>";
echo $payment->payment_description;
}
}
It seems that it doesn't pick up the ($data->order_status=="confirmed")
The other variables work. It selects on the ($data->order_payment_method=="auriga") and echo $payment->payment_description; works.
What have I missed??
Jan