我在生产站点上收到此PHP错误,但在本地主机上却没有:
致命错误:未捕获的错误:在…堆栈跟踪中找不到“ PayPal \ Api \ Itemlist”类:
这里是发生错误的函数:
function paypal_submit( $orderID, $cart ) {
// Get settings
global $settings;
// Init SDK
$paypal = paypal_init();
// Create payer
$payer = new \PayPal\Api\Payer();
$payer->setPaymentMethod('paypal');
// Iterate through items
$items = array();
$total = 0;
foreach( $cart as $imageID => $imagePrice ):
$total = $total + $imagePrice;
$item = new \PayPal\Api\Item();
$item->setName( 'Bild #' . $imageID )
->setCurrency( 'EUR' )
->setQuantity( 1 )
->setPrice( $imagePrice );
$items[] = $item;
endforeach;
$itemList = new \PayPal\Api\Itemlist();
$itemList->setItems( $items );
$amount = new \PayPal\Api\Amount();
$amount->setCurrency( 'EUR' )
->setTotal( $total );
$transaction = new \PayPal\Api\Transaction();
$transaction->setAmount( $amount )
->setItemList( $itemList )
->setDescription( 'Bestellung #' . $orderID )
->setInvoiceNumber( 'RE' . $orderID )
->setCustom( $orderID );
$redirectURLs = new \PayPal\Api\RedirectUrls();
$redirectURLs->setReturnUrl( add_query_arg( 'success', 1, permalink( 'checkout-paypal' ) ) )
->setCancelUrl( add_query_arg( 'success', 0, permalink( 'checkout-paypal' ) ) );
$payment = new \PayPal\Api\Payment();
$payment->setIntent( 'sale' )
->setPayer( $payer )
->setRedirectUrls( $redirectURLs )
->setTransactions( [ $transaction ] );
try {
$payment->create( $paypal );
} catch( PayPal\Exception\PayPalConnectionException $ex ) {
echo $ex->getCode(); // Prints the Error Code
echo $ex->getData(); // Prints the detailed error message
die( $ex );
} catch( Exception $ex ) {
die( $ex );
}
$approvalUrl = $payment->getApprovalLink();
header( 'Location: ' . $approvalUrl ); exit;
}
这里是初始化函数(仅出于完整性考虑):
function paypal_init() {
// Get settings
global $setting;
// Load PayPal SDK
require_once( ABSPATH . 'system/classes/paypal/autoload.php' );
// Register app
$paypal = new \PayPal\Rest\ApiContext(
new \PayPal\Auth\OAuthTokenCredential(
$setting['paypal_clientid'],
$setting['paypal_clientsecret']
)
);
// Return app
return $paypal;
}
所有其他类都可以工作。
奇怪的是,完全相同的集成可以在localhost上正常工作,但不能在生产环境下工作……PHP版本是相同的。据我所知,唯一的区别是生产站点运行在https之上。
任何想法可能是什么问题?我猜自动加载器可能出于某种原因不包含此类?
答案 0 :(得分:1)
自动加载器会查找一个使用您正在使用的类名命名的文件。由于您使用的是Itemlist
,因此它将查找文件Itemlist.php
。
将其更改为\PayPal\Api\ItemList
将使自动加载器找到正确的文件(在区分大小写的系统上)。因为SDK中的实际文件是ItemList.php
。