購入者の配送先住所を上書きする必要があるというシナリオがあるため、PaypalIpnConfig.php ファイルで次のコードを取得しました。
var $settings = array(
//more settings
'address1'=>'test address st',
'address2'=>'test address st 2',
'country'=>'United States',
'state'=>'Alaska',
'city'=> 'Anchorage',
'zip'=>'99501',
'address_override' =>'1'
);
しかし、サイトをリロードした後、次の警告が表示されます。
Unable to process payment. Please contact the merchant as the shipping address provided by the merchant is invalid, and the merchant has requested that your order must be shipped to that address.
私の問題に似た質問のいくつかをチェックしましたが、必要な答えが得られませんでした
Paypal IPNを使用している場合、Paypalに配送先住所を送信する方法
何が間違っている可能性がありますか?