Error PayPal IPN Handler
-
Hi there,
in
includes/payments/paypal_handler.php
there is an error on
Line 80
$paypal_post_url = 'https://www.' . ($options['mode'] == '1' ? 'sandbox' : '') . '.paypal.com/cgi-bin/webscr';
It should be:
$paypal_post_url = 'https://www' . ($options['mode'] == '1' ? '.sandbox' : '') . '.paypal.com/cgi-bin/webscr';
The fullstop after the
www
leads without using sandbox to a double fullstop, which will prevent the completion of the payment, becausewp_remote_post
can’t resolve the address.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Error PayPal IPN Handler’ is closed to new replies.