Skip to main content

PayPal Community

  • Dashboard
  • Send and Request
  • Wallet
  • Business
  • Help
Log in
  • Welcome
    • Guidelines
    • News and Events
    • Suggestions for PayPal
    • General Discussions
  • PayPal Help Community
    • Managing Account
    • Transactions
    • Wallet
    • Security and Fraud
    • Products & Services
    • Reporting
  • MTS Community
    • PayPal Upgrade Community
    • PayPal Payments Standard
    • REST APIs
    • NVP/SOAP APIs
    • SDKs
    • Sandbox Environment
    • PayPal Reporting
    • Payflow
    • Ideas for MTS
    • Client-side Integration
    • Server-side Integration
  • The Archives
    • PayPal Help Community Archives
      • Managing Account Archives
      • Transactions Archives
      • Wallet Archives
      • Security and Fraud Archives
      • Products & Services Archives
      • Reporting Archives
    • Help Community
      • PayPal Basics Archives
      • Payments Archives
      • My Money Archives
      • My Account Archives
      • Disputes and Limitations Archives
      • Products and Services Archives
      • PayPal Credit Archives
    • Merchant Community
      • Merchant Products
      • Business Tools Archives
      • Reporting Archives
      • Managing Risk and Fraud Archives
    • Help Archives
      • About Business (Archive)
      • About Payments (Archive)
      • About Settings (Archive)
      • About eBay (Archive)
      • About Protections (Archive)
      • About Products (Archive)
    • Social and Your Voice Archives
      • Off Topic (Archive)
      • My Feedback for PayPal (Archive)
    • About PayPal Archives
      • Watercooler (Archive)
      • Tax Information (Archive)
      • Fees (Archive)
      • eBay and PayPal (Archive)
      • Coupons and promotions (Archive)
    • My Account Archives
      • My account settings (Archive)
      • Account limits and verification (Archive)
      • Account balance (Archive)
      • Bank accounts and credit cards (Archive)
    • Payments Archives
      • Sending money (Archive)
      • Receiving money (Archive)
      • Refunds (Archive)
      • Donations and Fundraising (Archive)
    • Disputes and Security Archives
      • Disputes and claims (Archive)
      • Fraud, phishing and spoof (Archive)
    • My Business Archives
      • Merchant services (Archive)
      • Reporting and tracking (Archive)
      • Shipping (Archive)
    • PayPal Products Archives
      • PayPal Debit Mastercard (Archive)
      • PayPal Extras MasterCard (Archive)
      • PayPal Mobile & Other Services (Archive)
      • Student Accounts (Archive)
      • Bill Me Later (Archive)
    • Getting to know PayPal
      • My PayPal account
      • Security and protection
    • Receiving and sending money
      • Buying with PayPal
      • Selling with PayPal
    • PayPal Here UK
      • PayPal Here News and Events
      • PayPal Here Community
      • Chip and Pin Card Reader
      • PayPal Here App

The Community Forum is not available for new posts or responses; previous posts remain available to review. For comprehensive support options, please visit PayPal.com/HelpCenter
Merchant Technical Support: For technical support and related questions, please visit our Technical Support Help Center or Developer Central

If you want to report illegal content under the EU Digital Services Act, please do so here

since ‎Apr-17-2018
Country: United Kingdom
Type: Business
vibralogix
vibralogix Contributor
Contributor
6
Posts
3
Kudos
1
Solution
Your 5th PayPal Anniversary
Your 3rd PayPal Anniversary
Your PayPal Anniversary
Giving
The Return
Liked
Ice Breaker
Helper
Active
View all
Latest Contributions by vibralogix
  • Topics vibralogix has Participated In
  • Latest Contributions by vibralogix

can't checkout with safari

by vibralogix Contributor in PayPal Payments Standard
‎Mar-15-2024 02:56 AM
1 Kudo
‎Mar-15-2024 02:56 AM
1 Kudo
I noticed recently that Mac Safari can't checkout to Paypalif the user is not already logged in to Paypal. Paypal jsyt shows a blank screen and the developer console has many errors including   'Refused to execute a script because 'unsafe-eval' does not appear in the script-src directive of the Content Security Policy.'   I tested this with a cart and also a simple Paypal standard button that has worked for years and in all other browsers.   I noticed that If I clear the Paypal cookie named 'cookie_check' then it works for one checkout but then fails next time as the cookie is recreated. It seems this issue started when the new policy of removing the login on checkout if already logged in was introduced recently.   Any ideas how to fix this? ... View more

Re: Problem with creating an order with tax

by vibralogix Contributor in REST APIs
‎Sep-28-2019 12:24 AM
1 Kudo
‎Sep-28-2019 12:24 AM
1 Kudo
In case anyone else needs this I found the solution.   paypal.Buttons({ createOrder: function(data, actions) { return actions.order.create({ purchase_units: [ { reference_id: "ref", custom_id: "123456", amount: { currency_code: "EUR", value: "2.40", breakdown: { item_total: { currency_code: 'EUR', value: '2.00' }, tax_total: { currency_code: 'EUR', value: '0.40' }, } }, items: [ { name: "Item 1", description: "Description of item 1", sku: "id1", unit_amount: { currency_code: "EUR", value: "1.00" }, tax: { currency_code: "EUR", value: "0.20" }, quantity: "1" }, { name: "Item 2", description: "Description of item 2", sku: "id2", unit_amount: { currency_code: "EUR", value: "1.00" }, tax: { currency_code: "EUR", value: "0.20" }, quantity: "1" } ], } ], }); }, onApprove: function(data, actions) { // Capture the funds from the transaction return actions.order.capture().then(function(details) { // Show a success message to your buyer alert('Transaction completed by ' + details.payer.name.given_name); }); }, onError: function (err) { alert(err); } }).render('#paypal-button-container');   ... View more

Problem with creating an order with tax

by vibralogix Contributor in REST APIs
‎Sep-27-2019 07:17 AM
‎Sep-27-2019 07:17 AM
I am attempting to create an order with items that have tax but the following code is causing an exception. I can't see any useful error messages so can anyone spot what I am doing wrong. There seem to be very few examples out there apart from simplistic ones.   <script> paypal.Buttons({ createOrder: function(data, actions) { return actions.order.create({ purchase_units: [ { reference_id: "ref", custom_id: "123456", amount: { currency_code: "EUR", value: "2.40", }, amount_breakdown: { item_total: { currency_code: 'EUR', value: '2.00' }, tax_total: { currency_code: 'EUR', value: '0.40' }, }, items: [ { name: "Item 1", description: "Description of item 1", sku: "id1", unit_amount: { currency_code: "EUR", value: "1.00" }, tax: { currency_code: "EUR", value: "0.20" }, quantity: "1" }, { name: "Item 2", description: "Description of item 2", sku: "id2", unit_amount: { currency_code: "EUR", value: "1.00" }, tax: { currency_code: "EUR", value: "0.20" }, quantity: "1" } ], } ], }); }, onApprove: function(data, actions) { // Capture the funds from the transaction return actions.order.capture().then(function(details) { // Show a success message to your buyer alert('Transaction completed by ' + details.payer.name.given_name); }); }, onError: function (err) { alert(err); } }).render('#paypal-button-container'); </script> ... View more
Labels:
  • Labels:
  • Payments REST APIs

Auto return ignored

by vibralogix Contributor in Merchant Products and Services Archives
‎Nov-09-2018 02:24 AM
‎Nov-09-2018 02:24 AM
For the past week or so it appears that buyers are no longer returned to the URL specified in the Auto Return setting but instead to a default Paypal thank you page. This seems to affect some sellers accounts but not all (mine appears to be fine). Some of my clients who use Auto Return are seeing this issue and reported it to Paypal. Some get the response that they are aware of the issue and trying to fix it while others are told no problem exists (clearly it does). Is anyone else seeing this issue and how can we get a definitive answer from Paypal. Nothing os noted on the service status pages. ... View more
Labels:
  • Labels:
  • Express Checkout

Re: Sandbox IPN not calling

by vibralogix Contributor in Sandbox Environment
‎Apr-23-2018 08:49 AM
1 Kudo
‎Apr-23-2018 08:49 AM
1 Kudo
Hi,   IPN is working OK now.   It looks like it fails when the payment amount is $0.01. When I change to $1.00 IPN fires ok. I know there is no reason to use $0.01 with the sandbox but I just copied the button I was testing live with. IPN on the live site works fine with $0.01.   Thanks Adrian ... View more

Sandbox IPN not calling

by vibralogix Contributor in Sandbox Environment
‎Apr-17-2018 10:46 AM
‎Apr-17-2018 10:46 AM
Hi,   Is the Sandbox IPN working today? In my sandbox account I have set the URL for IPN (which has worked before) but nothing is ever sent. The IPN history is empty too so this is an issue if the IPN call not being made rather than any issues with the IPN code on the server.   Anyone else seeing any issues?   Adrian ... View more
Paypal Logo
  • Help
  • Contact Us
  • Security
  • Fees
  • © 1999-2025 PayPal, Inc. All rights reserved.
  • Privacy
  • Legal
  • Cookies
  • Policy Updates

The money in your balance is eligible for pass-through FDIC insurance.

The PayPal Cash Mastercard is issued by The Bancorp Bank pursuant to a license by Mastercard International Incorporated. The Bancorp Bank; Member FDIC.

Powered by Khoros
Welcome to the PayPal Community!