Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Hybrid View

  1. #1
    Join Date
    Apr 2013
    Location
    United States
    Posts
    11
    Plugin Contributions
    0

    Default switching PayPal IPN Verification Postback to HTTPS

    Hi,

    This issue has brought up recently for v138a, but there appears to be a confusion in that thread and perhaps low interest because of the old zencart version.

    I am running v151, but I have looked at the code and it is the same in v154.

    First, this is not about paypal talking to zencart as suggested in post 10, it is about zencart talking to paypal as described in the diagram provided by paypal:

    Name:  ipn_tree.jpg
Views: 766
Size:  54.2 KB

    I believe the relevant code is in function ipn_postback($mode = 'IPN', $pdtTX = '') which is located in includes/modules/payment/paypal/paypal_functions.php

    The following code is the same in v154 and it hardcodes the protocol to non-secure http:// (in the first line with red markup)
    Code:
        // send received data back to PayPal for validation
        $scheme = 'http://';
        //Parse url
        $web = parse_url($scheme . (defined('MODULE_PAYMENT_PAYPAL_HANDLER') ? MODULE_PAYMENT_PAYPAL_HANDLER : 'www.paypal.com/cgi-bin/webscr'));
        if (isset($_POST['test_ipn']) && $_POST['test_ipn'] == 1) {
          $web = parse_url($scheme . 'www.sandbox.paypal.com/cgi-bin/webscr');
        }
        //Set the port number
        if($web['scheme'] == "https") {
          $web['port']="443";  $ssl = "ssl://";
        } else {
          $web['port']="80";   $ssl = "";
        }
    The if statement marked up in blue always falls back to else clause in the second red mark up (the purple is never executed), so I am not sure why it is there, except that somebody thought about probing for secure connection after the initial assignment of scheme but then didn't finish it up.


    So, what would be the appropriate course of action?
    Simply hardcode the scheme to https:// and possibly MODULE_PAYMENT_PAYPAL_HANDLER, or is there already a function that probes for https:// that we can use to test and switch one way or the other?
    Last edited by moogawooga; 9 Mar 2016 at 10:56 PM.

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Checking the similar threads at the bottom of this post
    https://www.zen-cart.com/showthread....tback-to-HTTPS
    Zen-Venom Get Bitten

  3. #3
    Join Date
    Apr 2013
    Location
    United States
    Posts
    11
    Plugin Contributions
    0

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Quote Originally Posted by kobra View Post
    Checking the similar threads at the bottom of this post
    https://www.zen-cart.com/showthread....tback-to-HTTPS
    As I noted above this is precisely the reason I started this thread - the one you're referencing doesn't address the problem (the post #10 from that thread I referenced in the OP even misdirects it).

    Your suggestion in that thread is 'upgrade because the v138a code is very old', but as I explained above the v151 I am using is
    (a) relatively recent (b) the relevant function ipn_postback() is exactly the same in the latest v154.

    Can you, please, point me to the difference in the v154 code compared to v151 which would justify your proposed upgrade providing a solution to this specific issue?

  4. #4
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Where is the code that you reference above? I found something similar in includes/extras/ipncheck.php, but it uses https: not http:... And can't seem to find the area to which you seem to be referriing in 1.5.1 nor 1.5.4.maybe by directly referencing the code section, that would help. Otherwise, so far review of the various paypal files hasn't exposed what you reference above.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  5. #5
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Okay, after re-reading the earlier post a few times, found the file to be includes/modules/payment/paypal/paypal_functions.php. Looking at version 1.5.5 of ZC, it looks like that $web related. Assignment has been changed to https:// from the above referenced http://... So, when made an official version, it looks like the function ipn_check will usehttps, though it seems like other calls to paypal related sites seem to use https all of the time.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #6
    Join Date
    Apr 2013
    Location
    United States
    Posts
    11
    Plugin Contributions
    0

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Many thanks. Yeah, looks like 1.5.5. has simply hardcoded https instead of http

    https://github.com/zencart/zencart/b..._functions.php

    Since this is the solution in the current development I'll make the same change.

  7. #7
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    The thing was that the ipn postback issue that paypal is complaining about is not fixed in the current release 1.5.4
    I have no problem with paypal using the 1.5.4 version of code
    Zen-Venom Get Bitten

  8. #8
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Quote Originally Posted by kobra View Post
    I have no problem with paypal using the 1.5.4 version of code
    And the OP hasn't reported a problem with using PayPal with ZC 1.5.1 either, but the issue is not about the now, but about what is to come based on the information provided by PayPal to the OP and that ZC 1.5.5 contains changes compared to ZC 1.5.4 that appear to address the topic of discussion/area of identified code.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #9
    Join Date
    Apr 2013
    Location
    United States
    Posts
    11
    Plugin Contributions
    0

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Quote Originally Posted by kobra View Post
    I have no problem with paypal using the 1.5.4 version of code
    Indeed, at present there is no functional issue, and there wouldn't be one at least until 9/30/2016, irrespective of the zen-cart version (even 1.3.8 probably works fine).

    I assume that either 1.5.5 will be released by then or there will be a patch to 1.5.4 that makes the above mentioned change. I just didn't want to wait until then (the store owners feel better if they doesn't see outstanding issues in the emails paypal sends them), but you certainly could.

  10. #10
    Join Date
    Jul 2012
    Posts
    16,816
    Plugin Contributions
    17

    Default Re: switching PayPal IPN Verification Postback to HTTPS

    Quote Originally Posted by moogawooga View Post
    Indeed, at present there is no functional issue, and there wouldn't be one at least until 9/30/2016, irrespective of the zen-cart version (even 1.3.8 probably works fine).

    I assume that either 1.5.5 will be released by then or there will be a patch to 1.5.4 that makes the above mentioned change. I just didn't want to wait until then (the store owners feel better if they doesn't see outstanding issues in the emails paypal sends them), but you certainly could.
    Fwiw, recent post by ZC core team member is that basically provided nothing significant comes up in the very near future, ZC 1.5.5 is expected to be released by next Wednesday.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v138a PayPal IPN Verification Postback to HTTPS with v1.3.8
    By ferid in forum Built-in Shipping and Payment Modules
    Replies: 27
    Last Post: 23 Feb 2017, 10:07 PM
  2. v138a Access Denied on Paypal IPN verification
    By stoyka in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 13 Nov 2014, 04:06 PM
  3. PayPal IPN Security Measure problem after switching servers
    By Gloria in forum Addon Payment Modules
    Replies: 3
    Last Post: 2 Mar 2007, 04:25 PM
  4. switching from http to https
    By metamp in forum Basic Configuration
    Replies: 1
    Last Post: 8 Feb 2007, 09:00 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg