Will this script below work with the IPN Messages Sent with IPNs if the member is on a subscription and/or pay once payment and they request a Refund, Reversal, or Partial Refund?

if($payment_status == "Refunded" || $payment_status == "Reversed" || $payment_status == "Partially Refunded"){
mysql_query("UPDATE members SET month_date = '$gettoday', subscr_id = '$subscr_id', subscr_cancel = 'Y', active = 'N', prepay = 'N' WHERE id='$id'");
}

If not, what can I use or how do I script it in PHP to make my system read the IPN payment_status of all and know what subscriber (by their PayPal Subscribe ID or Member ID in my system) or payer ((By their Member ID in my system) to perform actions on when one of these are sent?

Also, If I wanted to check for a subscribe ID will it be smarter to do it like this?

if($payment_status == "Refunded" || $payment_status == "Reversed" || $payment_status == "Partially Refunded"){

if($subscr_id){

mysql_query("UPDATE members SET month_date = '$gettoday', subscr_id = '$subscr_id', subscr_cancel = 'Y', active = 'N', prepay = 'N' WHERE id='$id'");

} else {

mysql_query("UPDATE members SET month_date = '$gettoday', subscr_cancel = 'Y', active = 'N', prepay = 'N' WHERE id='$id'");

}}
link|improve this question

questions like "will this work" are best answered yourself by testing. 1.you learn more. 2. there are a million settings that can be different between set ups, so works for me may not mean work for you. – Dagon Mar 3 '11 at 0:13
Any help will be good though. When I get one working the others don't. I've had a refund here and there and my system didn't perform the code I put. That's why I'm reaching out to other talented developers to get help. I wouldn't be posting here if I wanted to figure it out without help. Any assistance is welcomed. The only bad question is the one not asked. – yanike Mar 3 '11 at 0:20
actully the faq has a list of bad questions. – Dagon Mar 3 '11 at 1:41
feedback

1 Answer

up vote 1 down vote accepted

Paypal will first send an IPN that the payment status is reversed, followed by another IPN with the status refunded. So, I would not include both reversed and refunded as you did in your original example.

As for testing for the user_id, that's always consistent, every IPN includes the payers paypal email including the reversed/refunded messages.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.