Aug 21st, 2011, 3:49 PM
Hi just1ncase,
Thanks for the kind words!
Glad it's coming in handy.
Yes, the ipn.php file is where the submission should get finalized. This line should get called for all successful payments that get put through:
Thanks for the kind words!
Glad it's coming in handy. Yes, the ipn.php file is where the submission should get finalized. This line should get called for all successful payments that get put through:
PHP Code:
<?php
ft_finalize_submission($pp["form_id"], $_POST['custom']);
If the submissions aren't being finalized, either the values being passed to that function aren't making it there, or
What I often do for debugging the ipn.php script is just to add in extra lines to send myself emails at the different spots. For starters, right before the line I quoted above, add the following line:
PHP Code:
<?php
mail("your@email.com", "debugging", "Form ID: {$pp["form_id"]}, sub ID: {$_POST['custom']}");
