Magento: The "order" authorizations are not implemented

loginname

Regular Member
Joined
Oct 1, 2008
Messages
406
Reaction score
14
Hey

magento 1.9.3.7

I'm testing my magento shop and get this exception: The "order" authorizations are not implemented.
(in exception.log). Payment method is PayPal. Even order confirmation is not sent to the customer and order get status "processing"?

I posted this question on magento community but after 5 days noone have responded so I'm trying my luck here :)

any clue would be great.
 
Hey

magento 1.9.3.7

I'm testing my magento shop and get this exception: The "order" authorizations are not implemented.
(in exception.log). Payment method is PayPal. Even order confirmation is not sent to the customer and order get status "processing"?

I posted this question on magento community but after 5 days noone have responded so I'm trying my luck here :)

any clue would be great.

Would need more info. What method of papal are you using? Express Checkout?

Something is making the payment pending. Do you know the reason for the pedning status? That will help further diagnose the issue.

/**
* Process payment pending notification
*
* @throws Exception
*/
public function _registerPaymentPending()
{
$reason = $this->getRequestData('pending_reason');
if ('authorization' === $reason) {
$this->_registerPaymentAuthorization();
return;
}
if ('order' === $reason) {
throw new Exception('The "order" authorizations are not implemented.');
}
 
ahh..magento thank god i switched to IXXO Cart, magento was driving me nuts.
 
Back
Top