sandbox paypal ipn自7月15日起未被调用

时间:2012-07-19 10:22:37

标签: php paypal sandbox paypal-ipn

我的沙箱ipn从7月15日开始没有被调用,因为它之前工作正常。它与ipn模拟器一起工作正常。

我不知道出了什么问题,因为我没有对我的ipn以及paypal表单文件进行任何更改。

这是我的paypal表格

<form name="frmSample" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="upload" value="1">
    <input type="hidden" name="rm" value="2">
    <input type="hidden" name="business" value="sreeni_1342691311_biz@gmail.com">
    <input type="hidden" name="item_name_1" value="Memorex">
    <input type="hidden" name="item_number_1" value="25">
    <input type="hidden" name="amount_1" value="30">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="notify_url" value="http://example.com/notify.php">
    <input type="hidden" name="return" value="http://example.com">
    <input type="hidden" name="cancel_return" value="http://example.com">
    <input type="submit" value="submit" >
</form>

这只是我在我的ipn监听器中写的

<?php
mail("sreeni@gmail.com","My Subject","My biz Message");
?>

邮件通过ipn模拟器发送。我试过改变我的商业帐户,也打开了ipn,但没有任何作用

有人能帮帮我吗?任何人都可以检查沙箱ipn是否适合您?

1 个答案:

答案 0 :(得分:0)

面对同样的问题..但是你可以注意到它正在使用立即购买按钮     CMD = _xclick

它只是问题所在     CMD = _cart

仅沙箱可能存在问题。如果你上线,它可能会开始正常工作。