• Resolved mikeknappe

    (@mikeknappe)


    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, because wp_remote_post can’t resolve the address.

Viewing 1 replies (of 1 total)
  • Plugin Support Collin Sasse

    (@collinsasse)

    Thanks for catching that – you’re right. We’re patching it now and will release the update within the next few days with some other bugfixes.

Viewing 1 replies (of 1 total)
  • The topic ‘Error PayPal IPN Handler’ is closed to new replies.