I have PayPal Listener working properly.
An Email is sent to me On Verified paypal transaction.
The next action that's taken is a DB Read where I've hard coded this condition:
<?php return array('uniq_id' => 'FD17F09C-C2BE-40BB-A6A4-97DF68AEC6FF'); ?>
Every time PayPal IPN triggers this event, the DB Read comes back with "not_found'. I do know for sure that the record exists. Also, if I put this DB Read action into the On Load of the form, it works fine.
How can I troubleshoot this further?
An Email is sent to me On Verified paypal transaction.
The next action that's taken is a DB Read where I've hard coded this condition:
<?php return array('uniq_id' => 'FD17F09C-C2BE-40BB-A6A4-97DF68AEC6FF'); ?>
Every time PayPal IPN triggers this event, the DB Read comes back with "not_found'. I do know for sure that the record exists. Also, if I put this DB Read action into the On Load of the form, it works fine.
How can I troubleshoot this further?
Hi embo,
Sorry, I can't think of any obvious reason why that wouldn't work in a Listener action. Maybe Max has a suggestion, he knows much better how the code works here.
Bob
Sorry, I can't think of any obvious reason why that wouldn't work in a Listener action. Maybe Max has a suggestion, he knows much better how the code works here.
Bob
I may have figured this one out... I was trying to do the PayPal Listener in a different form. I guess I can't do that? When I put the PayPal Listener into the form that actually submits the data, it works. Or perhaps there was some other issue?
This topic is locked and no more replies can be posted.