我有一个电子商务网站,它一直在使用美国 PayPal 账户来处理订单,而不是 API,只是标准账户。它工作正常。
我的一位客户在英国,收到一条错误消息,表明这可能是他的帐户。
错误:卖家只接受加密的网站付款。您不能通过未加密的按钮向卖家付款。请联系您的卖家了解更多详情。
PayPal说它不是帐户。美国和英国有区别吗。
编码:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" >
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="bn" value="SEOWebstore">
<input type="hidden" name="business" value="#GetSettings.Paypal_Account#">
<input type="hidden" name="item_name" value="#Request.AppSettings.SiteName# Order">
<input type="hidden" name="currency_code" value="#Left(LSCurrencyFormat(10, "international"),3)#">
<input type="hidden" name="amount" value="#Total#">
<cflock scope="SESSION" timeout="15" type="READONLY">
<input type="hidden" name="custom" value="#Request.BasketNum#^#Session.User_ID#"
</cflock>
<input type="hidden" name="notify_url" value="#Request.AppSettings.SiteURL##self#?fuseaction=shopping.checkout&step=ipn">
<input type="hidden" name="return" value="#Request.AppSettings.SiteURL##self#?fuseaction=shopping.checkout&step=ipn&PayPalCust=Yes">
<input type="hidden" name="cancel_return" value="#Request.AppSettings.SiteURL##self#?fuseaction=shopping.basket">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but01.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>