2015-04-07 51 views
0

對於在Magento默認的方法成功頁面是/checkout/oneage/success成功URL託管

對於PayPal網站標準成功頁面是/paypal/standard/success/

誰能告訴我是什麼的貝寶網站成功的網址託管親?一些挖後,我發現這是paypal/hostedpro/success/

難道是正確的嗎?我需要的成功URL設置爲網站支付返回URL託管在貝寶一邊親。

請幫忙。

回答

0

法/貝寶/控制器/ StandardController有這樣的方法successAction,其finaly重定向你檢出/成功/ onepage

/** 
* when paypal returns 
* The order information at this point is in POST 
* variables. However, you don't want to "process" the order until you 
* get validation from the IPN. 
*/ 
public function successAction() 
{ 
    $session = Mage::getSingleton('checkout/session'); 
    $session->setQuoteId($session->getPaypalStandardQuoteId(true)); 
    Mage::getSingleton('checkout/session')->getQuote()->setIsActive(false)->save(); 
    $this->_redirect('checkout/onepage/success', array('_secure'=>true)); 
} 

HostedproController那裏沒有successAction,只有returnAction

/** 
* When a customer return to website from gateway. 
*/ 
public function returnAction() 
{ 
    $session = $this->_getCheckout(); 
    //TODO: some actions with order 
    if ($session->getLastRealOrderId()) { 
     $this->_redirect('checkout/onepage/success'); 
    } 
} 
+0

我需要設置在貝寶的網站支付託管親Magento的成功URL。它的網址是什麼?付款狀態我成功完成購買後作爲待付款。 –

+0

我沒有絕對的把握,也許試試這個「結帳/ onepage /成功」 – zhartaunik