PayPal Web 错误:很抱歉,我们无法使用您选择的资金来源完成购买

  • 本文关键字:选择 错误 Web 抱歉 我们 PayPal paypal
  • 更新时间 :
  • 英文 :


我在PayPal中创建了一个帐户,并在实时模式下与PHP集成。但当我输入我的卡详细信息并提交时,发现了错误消息。

很抱歉,我们无法使用您选择的资金来源完成您的购买。请加一张借记卡或信用卡。

<form action="<?php echo $paypalUrl; ?>" method="post" name="frmPayPal1">
<div class="panel price panel-red">
<input type="hidden" name="business" value="<?php echo $paypalId; ?>">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="item_name" value="It Solution Stuff">
<input type="hidden" name="item_number" value="2">
<input type="hidden" name="amount" value="1">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="currency_code" value="AUD">
<input type="hidden" name="cancel_return" value="http://localhost/paypal/cancel.php">
<input type="hidden" name="return" value="http://localhost/paypal/success.php">  

<div class="panel-heading  text-center">
<h3>PRO PLAN</h3>
</div>
<div class="panel-body text-center">
<p class="lead" style="font-size:40px"><strong>$20 / month</strong></p>
</div>
<ul class="list-group list-group-flush text-center">
<li class="list-group-item"><i class="icon-ok text-danger"></i> Personal use</li>
<li class="list-group-item"><i class="icon-ok text-danger"></i> Unlimited projects</li>
<li class="list-group-item"><i class="icon-ok text-danger"></i> 27/7 support</li>
</ul>
<div class="panel-footer">
<button class="btn btn-lg btn-block btn-danger" href="#">BUY NOW!</button>
</div>
</div>
</form>

重定向中使用的一些变量有:

<?php
$paypalUrl='https://www.paypal.com/cgi-bin/webscr';
$paypalId='xxx@xxxxxxxx.xxx';
?>

这不是Stackoverflow的问题。不存在技术问题,当然也不存在编程问题。

问题在标题中:";我们无法使用您选择的资金来源完成您的购买&";,并且该解决方案在引用的消息中如下:;请加一张借记卡或信用卡">

这是一个正常的商业例外。当用户看到此消息时,他们需要使用不同的支付方式进行支付,例如使用不同的卡。

最新更新