I tried to set order_id, but the result is the same ,
the return url is
http://mydomani.xxx/index.php?option=com_hikashop&ctrl=checkout&task=notify¬if_payment=example&tmpl=component&PaymentID=7403553151051630&TransID=4867583161051630&order_id=261&postdate=0612&resultcode=APPROVED&auth=999999&Error=&ErrorText=&cardtype=MC&payinst=VPAS&liability=Y&responsecode=00
i tried this:
foreach($_GET as $key => $value) //foreach($_REQUEST as $key => $value)
{
$key = $filter->clean($key);
$value = JRequest::getString($key);
$vars[$key] = $value;
}
and
// The load the parameters of the plugin in $this->payment_params and the order data based on the order_id coming from the payment platform
$order_id =$_GET['order_id']; // (int)@$vars['order_id'];
$dbOrder = $this->getOrder($order_id);
but the result is the same, white page
i attach my new example page
some patience please, help me