1

PHP ベースのアプリケーションに支払いゲートウェイを統合しようとしています。そのために、サンドボックスを使用しています。しかし、支払い後、ステータスは保留中と表示されますが、アカウントから金額が差し引かれています。

私のコードは次のようなものです:

<form name="frm" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_xclick" />
     <input type="hidden" name="business" value="sri_1338363856_biz@gmail.com" />
     <input type="hidden" name="amount" value="<?php echo get_plan_value($plan_id); ?>" />
     <input type="hidden" name="no_shipping" value="1" />
     <input type="hidden" name="no_note" value="1" />
     <input type="hidden" name="currency_code" value="USD" />
     <input type="hidden" name="lc" value="US" />
     <input type="hidden" name="item_name" value="<?php echo get_plan_name_by_value($_REQUEST['bus_plan']) ?> Registration" />
     <input type="hidden" name="bn" value="PP-BuyNowBF" />
     <input type="hidden" name="return" value="http://localhost/uploaded_server_alert/backup/alertR/business/payments-over.php?last_id=<?php echo $lastId; ?>&agent_email=<?php echo $agent_email; ?>&username=<?php echo ($uname); ?>&contact_email=<?php echo $contact_email; ?>" />
     <input type="hidden" name="rm" value="2" />

     <input type="submit"  border="0" name="submit" value="Order Now" alt="Make payments with PayPal - it's fast, free and secure!" class="additional_height" title="Make payments with PayPal - it's fast, free and secure!" />
     <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /> 
  </form>

どうすれば問題を解決できますか?

4

3 に答える 3

2

これは、Payment Reviewが有効になっているためです。

Developer Central -> Test Accounts で Disabled に変更します

于 2012-08-17T07:47:09.490 に答える
0

IPN リスナーと IPN ハンドラーを再確認してください。

いくつかのサンプル コードを参照してください。

http://www.micahcarrick.com/paypal-ipn-with-php.html http://www.evoluted.net/thinktank/web-development/paypal-php-integration

于 2012-08-17T07:47:19.207 に答える
0

問題は、notify_url について言及していないことです。notify_url は、paypal が商品価格、reciever_email、通貨などの認証のために IPN を送信する URL です。notify_url は localhost の URL であってはなりません。 IPN ヒットを送信すると、localhost の ulr が取得され、paypal には localhost のようなものはありません。

Write following input tag: 

<input type="hidden" id="notify_url" name="notify_url" value="url of ipn listener"/> 

in above tag replace value by your ipn listener url.
于 2012-08-17T08:17:02.700 に答える