You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated the module and now after i successfully pay on alipay, im redirected to the notify page.
I think there is a problem in the order flow:
When creating the form for checkout we set parameters like :
'return_url' => $this->getReturnURL(),
'notify_url' => $this->getNotifyURL(),
and
return url is Mage::getUrl('alipay/payment/notify/', array('_secure' => true));
notify url is Mage::getUrl('alipay/payment/notify/', array('_secure' => true));
same
It means the customer will be redirected to a white page displaying "success"
He is never redirected to success page.
Could you add a new page for return, which redirect customer to success if status is TRADE SUCCESS ?
The text was updated successfully, but these errors were encountered:
Thanks , alipay's callback would first detect if we pass the notify url value to their server. If we have notify url value their system would ignore the return url.
That's why it confused you a lot. But we will make a page for the return url work, make it better and even perfect.
Thanks for your good suggestion and help us find out the missing point.
Hi,
I updated the module and now after i successfully pay on alipay, im redirected to the notify page.
I think there is a problem in the order flow:
When creating the form for checkout we set parameters like :
'return_url' => $this->getReturnURL(),
'notify_url' => $this->getNotifyURL(),
and
return url is Mage::getUrl('alipay/payment/notify/', array('_secure' => true));
notify url is Mage::getUrl('alipay/payment/notify/', array('_secure' => true));
same
It means the customer will be redirected to a white page displaying "success"
He is never redirected to success page.
Could you add a new page for return, which redirect customer to success if status is TRADE SUCCESS ?
The text was updated successfully, but these errors were encountered: