我已将paypal与我的网站集成,但它确实需要支付,但它不会将任何IPN发送到我的php文件,这应该更新我的数据库.... 有我一直在使用的代码: 致电
session_start();
if($mode=='live')
{
$url=" https://www.paypal.com/cgi-bin/webscr";
$email="nnnnnnn_singh@live.com";
$_SESSION['url']=$url;
$_SESSION['email']=$email;
$_SESSION['subtotal']=$subtotal;
}
else if($mode=='sandbox')
{
$url= "https://www.sandbox.paypal.com/cgi-bin/webscr";
$email="nnnnnnn_1329707350_biz@gmail.com";
$_SESSION['url']=$url;
$_SESSION['email']=$email;
$_SESSION['subtotal']=$subtotal;
}
?>
<form action="<?php echo $url; ?>" method="post">
<input type="hidden" name="cmd" value="_xclick"/>
<input type="hidden" name="business" value="<?php echo $email; ?>"/>
<input type="hidden" name="item_name" value="shopping cart"/>
<input type="hidden" name="currency_code" value="GBP"/>
<input type="hidden" name="amount" value="<?php echo $subtotal;?>"/>
<input type="hidden" name="return" value="<?php echo SITE_URL; ?>"/>
<input type="hidden" name="cancel_return" value="<?php echo SITE_URL."/shoppingCart.php" ?>"/>
<input type="hidden" name="notify_url" value="php url" />
<input type="hidden" name="rm" value="2"/>
<input type="hidden" name="custom" value="<?php echo $customer_ID;?>"/>
<input type="image" src="http://www.paypal.com/en_US/i/btn/x-click-but01.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"/>
</form>
和php代码
来自php IPN示例代码.....
答案 0 :(得分:1)
尝试: 1.登录您的PayPal帐户 2.转到个人资料 - &gt;历史 - &gt; IPN历史记录 - &gt;打开我的IPN 3.插入您的IPN侦听器URL。
答案 1 :(得分:0)
有什么价值:
<input type="hidden" name="notify_url" value="php url" />
这不应该在localhost上,因为PayPal会将POST数据从其服务器发送到该URL。所以localhost将不起作用。