Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5968225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:03:31+00:00 2026-05-22T20:03:31+00:00

When I do a payment by credit card on paypal sandbox, I fill some

  • 0

When I do a payment by credit card on paypal sandbox, I fill some special characters (ex: !@#@%^&) on address 1/address 2 text fields.
After payment, I get a IPN message, post back to PP and receive a INVALID message (HTTP error 200).

I set UTF-8 on profile/language on PP. But the problem is still there.

Remark: The payment process works fine if I pays by using PP account (means log in and click payment button).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T20:03:32+00:00Added an answer on May 22, 2026 at 8:03 pm

    You have to be careful to send to Paypal the exact data you received in the IPN call, with the notable exception of the cmd parameter, which has to be set to _notify-validate.

    Here is some PHP code that takes the raw POST data, parses it to an array, changes the cmd parameter, converts it back to POST data, and sends it to Paypal. Getting the raw POST data allows to bypass PHP’s built-in parsing, which may apply messy things such as magic quotes, depending on your configuration.

    $post = file_get_contents('php://input');
    parse_str($post, $data);
    $data['cmd'] = '_notify-validate';
    $post = http_build_query($data);
    
    $ch = curl_init('https://www.paypal.com/cgi-bin/webscr');
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
    
    $result = curl_exec($ch);
    curl_close($ch);
    
    if ($result == 'VERIFIED') {
        // process the payment
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Some agency of webhosting, allow automatic credit card payment every year without entering each
How to process the payment by paypal/credit card from a android app? Right now
I have to take the user credit card details for payment through paypal. The
Is there any way to add credit card payment support to an android application
How do I accept credit card payments inside a C# app? I'll use some
I am wanting to accept recurring credit card payments for some software I am
Possible Duplicate: Credit card payment gateway in PHP? I am looking for a solid
I'm having some trouble choosing between PayPal's Instant Payment Notification (IPN) and Payment Data
I wonder how I connect a credit card to my website? The payment should
Whenever I hit submit for paypal or credit card on this form, it always

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.