View Single Post
  #1   IP: 153.99.80.189
Old 2016-08-17, 12:34 PM
Allenton Allenton is offline
初级会员
 
Join Date: 2009-08-20
Posts: 1
Allenton 现在声名狼藉
Default

check 2 places:
admin desk
admin/modules.php?set=payment
check your paypal setup:
user name
password
signature

front:
includes/modules/payment/paypalwpp.php, near line 1043
$doPayPal = new paypal_curl(array('mode' => 'nvp',
'user' => trim(MODULE_PAYMENT_PAYPALWPP_APIUSERNAME),
'pwd' => trim(MODULE_PAYMENT_PAYPALWPP_APIPASSWORD),
'signature' => trim(MODULE_PAYMENT_PAYPALWPP_APISIGNATURE),
'version' => '3.2',
'server' => MODULE_PAYMENT_PAYPALWPP_SERVER));
$doPayPal->_endpoints = array('live' => 'https://api-3t.paypal.com/nvp',
'sandbox' => 'https://api.sandbox.paypal.com/nvp');

do not use the following code:

$doPayPal = new paypal_curl(array('mode' => 'nvp',
'user' => 'xxxxxxxxxxx',
'pwd' => 'xxxxxxxxxxxxxxxx',
'signature' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxx',
'version' => '3.2',
'server' => MODULE_PAYMENT_PAYPALWPP_SERVER));
Reply With Quote