in reply to How do you use Paypal IPN with Dancer2?
Have you tried getting the script to work the way they originally had it?
This may not be an issues but in your code you have.
But the way they had it.$return_query = "cmd=_notify-validate&" . $return_query;
would be like this, if you wanted to wright it that way. Thats also guessing that string $return_query is formatted to support &Some=Thing;Like=That.$query .= '&cmd=_notify-validate';
$return_query = $return_query."&cmd=_notify-validate";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do you use Paypal IPN with Dancer2?
by MorayJ (Beadle) on Jul 12, 2016 at 11:42 UTC | |
by $h4X4_|=73}{ (Monk) on Jul 12, 2016 at 18:16 UTC | |
by MorayJ (Beadle) on Jul 14, 2016 at 19:30 UTC | |
by $h4X4_|=73}{ (Monk) on Jul 14, 2016 at 23:09 UTC |