Hi,
from time to time, the _basketFromCookie Method (cbpaidsubscriptions.ccbill.php) doesn't return the OrderID value from the stored cookie.
this results in failure to process the IPN reply and a failed Order completion.
have you encountered this behavior ? any idea what i can do to fix it ?
Code:
protected function handleReturn( $paymentBasket, $postdata )
{
$requestdata = array();
// Our only way was to store into a browser cookie the basket params, as CCBill doesn't return anything custom: get it:
$this->_basketFromCookie( $requestdata );
return $this->_returnParamsHandler( $paymentBasket, $requestdata, 'R' );
}
Thanks