我对paypal有困难,我可以让它在测试模式下完美运行,但不能在实时模式下运行....
<form class="paypal-form" action=" https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="live@email.ie">
<input type="hidden" name="item_name" value="qparcel">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="amount" id="amount" value="<?php echo $paypal_amount; ?>">
<input type="hidden" name="shipping" value="0">
<input type="hidden" name="custom " value="<?=$orderid?>">
<input type="hidden" name="custom_more" value="<?php echo 'test2'; ?>">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="hidden" name="return" value="<?php echo get_site_url(); ?>/payment-complete">
<input type="image" src="<?php echo get_option("siteurl"); ?>/wp-content/themes/qparcel/images/pay-with-pp.jpg" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_AU/i/scr/pixel.gif" width="1" height="1">
</form>
响应页面
if ( isset($_POST['mc_gross']) ) {
// do stuff
}
当我处于测试模式时,这可以很好地工作,在实时模式下它不会。
现场版本中是否有$_POST['mc_gross']
出现的可能性?
答案 0 :(得分:0)
你在这里解释不多,但看起来你正在尝试使用PDT并将交易数据返回到你的返回网址。??
您只需要确保在您的真实帐户中配置的内容与在测试帐户中配置的方式相同。当然,这些是完全独立的,所以你必须单独设置它们。