私はローカルホスト上のCodeIgniterプロジェクトを働いているに取り組んでいないとした私は、支払いのためのPayPalのサンドボックスの支払い方法を使用しています。私は問題に直面していますペイパルは、localhostの
これでは、戻りURLが自動的にリダイレクトされていないとも私はリターン商人]ボタンをクリックしたときに、それは私のURLに任意のパラメータを返していません。
私はpaypalのアカウントから自動返品を設定しており、返信URLも設定していますが、依然として私はこのフォームとパラメータを利用しています。
$paypal_url='https://www.sandbox.paypal.com/cgi-bin/webscr';
<form action="<?php echo $paypal_url; ?>" method="post" name="frmPayPal1">
<input type="hidden" name="business" value="<?php echo $paypal_id; ?>">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="item_name" value="PHPGang Payment">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="userid" value="1">
<input type="hidden" name="credits" value="510">
<input type="hidden" name="amount" value="20">
<input type="hidden" name="cpp_header_image" value="http://112.196.5.114/psychics/component/images/logo.png">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="notify_url" value="http://112.196.5.114/psychics/dashboard/profile/return_url">
<input type="hidden" name="cancel_return" value="http://112.196.5.114/psychics/dashboard/profile/cancel_return">
<input type="hidden" name="return" value="http://112.196.5.114/psychics/dashboard/profile/return_url">
<button type="submit" class="btn btn-success"> Add Funds</button>
</form>
私の所在はどこになりませんでした。
お返事ありがとうございます。私はあなたの後を踏んだ後、支払いの完了後私のリターンURLに自動的にリダイレクトされません。自動復帰はオンですが、自動復帰のためには機能していません。 –
私がマーチャントへのリターンをクリックすると、リターンURLにリダイレクトされ、すべてのトランザクションパラメータが表示されます。自動的にリダイレクトして、トランザクションのすべてのレコードを保存することができます。ありがとうございます –
また、支払いステータスが保留に来ています。 –