Finally! I seemed to have found it!
In ipn_listener.php line 79:
Changed to:
And it works. strcmp is case sensitive.
May need to add a check to convert 'verified' to either upper or lower case to make sure this check always works regardless of upper/lower case.
@[modpluz],
UPDATE:
Everything seems to be working now. I updated the listener with the following fix:
In ipn_listener.php line 79:
PHP Code:
TO
I also updated the main signup to use the new 'I'm not a robot' verification.
Will post my changes to your Github
In ipn_listener.php line 79:
PHP Code:
if (strcmp ($res, "VERIFIED") == 0) {
Changed to:
PHP Code:
if (strcmp ($res, "verified") == 0) {
May need to add a check to convert 'verified' to either upper or lower case to make sure this check always works regardless of upper/lower case.
@[modpluz],
UPDATE:
Everything seems to be working now. I updated the listener with the following fix:
In ipn_listener.php line 79:
PHP Code:
Code:
if (strcmp ($res, "VERIFIED") == 0) {
PHP Code:
if ((strcmp ($res, "VERIFIED") == 0) || (strcmp ($res, "verified") == 0)) {
I also updated the main signup to use the new 'I'm not a robot' verification.
Will post my changes to your Github