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 ‎Jul-27-2022
Country: Australia
Type: Business
Tudsy
Tudsy Contributor
Contributor
15
Posts
0
Kudos
0
Solutions
Friendly
Conversationalist
Your PayPal Anniversary
Ice Breaker
Active
The Return
View all
Latest Contributions by Tudsy
  • Topics Tudsy has Participated In
  • Latest Contributions by Tudsy

Re: seller account not being debited in sandbox

by Tudsy Contributor in Sandbox Environment
‎Nov-01-2023 07:01 AM
‎Nov-01-2023 07:01 AM
Hi   When I mean the buyer account, I mean the personal account in sandbox.   Thanks. ... View more

Re: seller account not being debited in sandbox

by Tudsy Contributor in Sandbox Environment
‎Oct-13-2023 07:02 AM
‎Oct-13-2023 07:02 AM
Sorry for this.   Here is the form in html that I use:   <form action='https://www.sandbox.paypal.com/cgi-bin/webscr' method ='POST' id='paypal' onsubmit='return true' name='Form' > <?php $graphic = $_POST["Graphic"]; $Price = $_POST["Price"]; $Person = $_POST["Person"]; ?> <input type='hidden' name='cmd' value='_cart' > <input type='hidden' name='business' value='xxxxxxx' > <input type='hidden' name='upload' value='1' > <INPUT TYPE='hidden' id='RETURL' NAME='return' > <script> URL = 'https://ecovib2d.com.au/workfromhome/yourart/'; Person = <?php echo json_encode($Person); ?>; Graphic = <?php echo json_encode($graphic); ?>; document.getElementById('RETURL').value = URL + Person + '/Graphic/' + Graphic ; </script> <INPUT TYPE='hidden' NAME='currency_code' value='AUD'>   <input type='hidden' id='Item1' name='item_name_1' > <script> document.getElementById('Item1').value = 'Your Graphic in JPEG format -' + Graphic ; </script>     <input type='hidden' id='Cost' name='amount_1' > <script> Price = <?php echo json_encode($Price); ?>; document.getElementById('Cost').value = Price; </script> <INPUT TYPE='hidden' name='address_override' value='1' > </form>   ... View more

Re: seller account not being debited in sandbox

by Tudsy Contributor in Sandbox Environment
‎Oct-06-2023 07:53 AM
‎Oct-06-2023 07:53 AM
Hi   oops   Its the buyer account that is not debited.   Sorry for the mistake. ... View more

seller account not being debited in sandbox

by Tudsy Contributor in Sandbox Environment
‎Oct-06-2023 07:52 AM
‎Oct-06-2023 07:52 AM
Hi When I do mock transactions with SANDBOX, the sellers account is not debited.   Can anyone please help me?   Thanks. ... View more

Re: code=INVALID_BUSINESS_ERROR

by Tudsy Contributor in Sandbox Environment
‎Oct-06-2023 07:46 AM
‎Oct-06-2023 07:46 AM
Hi   The problem is solved.   I forgot to use the correct URL in the action attribute.   Thanks. ... View more

code=INVALID_BUSINESS_ERROR

by Tudsy Contributor in Sandbox Environment
‎Oct-06-2023 06:02 AM
‎Oct-06-2023 06:02 AM
Hi   I get this error when running my script:   code=INVALID_BUSINESS_ERROR   I am using sandbox to test my payment system. Here is the form:   <form action='https://www.paypal.com/cgi-bin/webscr' method ='POST' id='paypal' onsubmit='return true' name='Form' > <?php $graphic = $_POST["Graphic"]; $Price = $_POST["Price"]; $Person = $_POST["Person"]; ?> <input type='hidden' name='cmd' value='_cart' > <input type='hidden' name='business' value='xxxxxxxxxx' > <input type='hidden' name='upload' value='1' > <INPUT TYPE='hidden' id='RETURL' NAME='return' > <script> URL = 'https://ecovib2d.com.au/workfromhome/yourart/'; Person = <?php echo json_encode($Person); ?>; Graphic = <?php echo json_encode($graphic); ?>; document.getElementById('RETURL').value = URL + Person + '/Graphic/' + Graphic ; </script> <INPUT TYPE='hidden' NAME='currency_code' value='AUD'>   <input type='hidden' id='Item1' name='item_name_1' > <script> document.getElementById('Item1').value = 'Your Graphic in JPEG format -' + Graphic ; </script>     <input type='hidden' id='Cost' name='amount_1' > <script> Price = <?php echo json_encode($Price); ?>; document.getElementById('Cost').value = Price; </script> <INPUT TYPE='hidden' name='address_override' value='1' > </form> Do i have to update to a new payment system from paypal to continue testing?   Thanks. ... View more

server access denied

by Tudsy Contributor in PayPal Payments Standard
‎Oct-01-2023 12:23 PM
‎Oct-01-2023 12:23 PM
Hi I am trying to create a form by using the echo command, as below:     echo '<form action="https://www.paypal.com/cgi-bin/webscr" id="paypal" name="Form" >'; $graphic = $_POST["Graphic"]; $Price = $_POST["Price"]; echo '<input type="hidden" name="cmd" value="_cart" >'; echo '<input type="hidden" name="business" value="xxxxxx" >'; echo '<input type="hidden" name="upload" value="1" >'; echo '<INPUT TYPE="hidden" id="RETURL" NAME="return" >'; echo '<script> URL = "https://ecovib2d.com.au/workfromhome/yourart/"; Person = "AdrianTudini"; document.getElementById("RETURL").value = URL + Person + "/Graphic/" + "<?php echo $graphic ?>" ; </script>'; echo '<INPUT TYPE="hidden" NAME="currency_code" value="AUD">';   echo '<input type="hidden" name="item_name" value="Your Graphic in JPEG format -". "<?php echo $graphic; ?>" >'; echo ' <input type="hidden" name="amount" value="<?php echo $Price; ?>" >'; echo '<INPUT TYPE="hidden" name="address_override" value="1" >'; echo '</form> ';   But I get an error  as below:   Access Denied. You don't have permission to access "/cgi-bin/webscr" on this server. Reference #1696188016109d1a59152f84d622e31 Timestamp: 1696188016   Any help will be appreciated. Thanks.   Adriano ... View more

https://www.paypal.com/webapps/shoppingcart/error?...

by Tudsy Contributor in Sandbox Environment
‎Oct-01-2023 11:17 AM
‎Oct-01-2023 11:17 AM
Hi   I am doing some testing and I get the following error:   https://www.paypal.com/webapps/shoppingcart/error?flowlogging_id=f128727bbd2f2&code=AMOUNT_MISSING   Can anyone help?   Thanks.   Adriano ... View more

Re: sandbox amount_missing -problem solved

by Tudsy Contributor in Sandbox Environment
‎Sep-24-2023 10:36 AM
‎Sep-24-2023 10:36 AM
HI   The problem has now been resolved. thanks. ... View more

sandbox amount_missing

by Tudsy Contributor in Sandbox Environment
‎Sep-24-2023 04:53 AM
‎Sep-24-2023 04:53 AM
        Hi   I am in the sandbox environment and I get this error:   https://www.sandbox.paypal.com/webapps/shoppingcart/error?flowlogging_id=f249097d305f5&code=amount_missing   Here is the form:   <form  action='https://www.sandbox.paypal.com/cgi-bin/webscr' id='Form1' name='Form'  onSubmit = 'return validateForm()' method="POST" >    <input type="hidden" name="cmd" value="_cart">   <input type='hidden' name='business' value='xxxxxxxxxxxx' />   <input type="hidden"   name="upload" value="1">   <INPUT TYPE="hidden" id='RETURL' NAME="return" />        <INPUT TYPE="hidden" NAME="currency_code" value="AUD">      <input type='hidden' id = 'Cost' name='Price' value='<?php echo $_POST['Price']; ?>' />  <input type='hidden' id = 'pic' name='Graphic' value='<?php echo $_POST['Graphic']; ?>' /> <input type = 'hidden' id='Artist'  name ='Person' value ='<?php echo $_POST['Person']; ?>' />       <label for='Age_of_Subscriber'>Please enter your Age (in years - Privacy purposes - Must be 13 years old or over): </label>      <input type='number' id= 'AGE1' name='Age'  placeholder='Enter your Age' />     <br> <br>    <label for='First_Name2'>Please enter your First Name:</label>     <input type='text'  id='FName' name='FirstName'  placeholder='Enter your Firstname' />    <br>    <br>    <label for='Last_Name2'>Please enter your Last Name:</label>     <input type='text' id='SName' name='LastName'  placeholder = 'Enter your Surname' />    <br>    <br>    <br>       <label for='email2'>Please enter your Email Address in the following format: xxxxxxxxxxxxxxxx </label>     <input type='email' id='Email' name='EmailAddress'   placeholder ='Your Email Address'  />  <br> <br>     <p> View our Terms of Service (https://ecovib2d.com.au/workfromhome/TOC/website_terms_and_conditions_of_use.docx)  and  Privacy Policy (https://ecovib2d.com.au/workfromhome/privacy/privacypolicy.php).</p>   <br> <br>     <script>                     Graphic = "<?php echo $_POST['Graphic']; ?>";                 </script>   <input type="hidden" name="item_name" value='"Your Graphic in JPEG format - " + Graphic' >     <input type="hidden" name="amount" value="2.00">   <INPUT TYPE="hidden" name="address_override" value="1">           <input type='submit' id='submit_form' value ='Buy your ART- <?php echo $_POST['Graphic']; ?>'   />       </form>         ... 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!