2013-10-23 36 views
3

我有一個電子商務網站,一直在使用美國PayPal賬戶處理訂單,而不是API,只是標準賬戶。它工作正常。貝寶經典錯誤:賣家只接受加密網站付款

我的一個客戶是在英國,並收到一條錯誤消息,指出它可能是他的帳戶。

Error: The seller accepts encrypted website payments only. You cannot pay the seller through un-encrypted buttons. Please contact your seller for more details.

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> 
+0

這可能只是一個複製粘貼錯誤,但是您在自定義輸入字段中缺少關閉'>'。 – duncan

+0

是的,這只是一個複製和粘貼錯誤,但感謝您的觀察 – user2911520

回答

2

錯誤消息:

Error: The seller accepts encrypted website payments only. You cannot pay the seller through un-encrypted buttons. Please contact your seller for more details.

出現時使用的是未加密的和未保護的PayPal付款標準按鈕和已選擇對塊付款這些付款您的PayPal賬戶(適用於任何賬戶)

解除未受保護和未加密PayPal付款的付款標準按鈕:

1.登錄到您的PayPal Premier帳戶或企業帳戶。
2.單擊配置文件子選項卡。
3.在銷售偏好列中,點擊網站付款偏好鏈接。
4.向下滾動至加密網站付款部分。
5.旁邊的塊非加密網站付款標籤,選擇關閉單選按鈕。
6.滾動到頁面底部,然後單擊保存按鈕。

Ref。 Encrypted Web Payments

+0

奇怪的是,即使我打算打開此選項,它仍然沒有阻止非加密按鈕, –