Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 32
  1. #11
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: V154 Still Getting Handshake Error After Upgrade

    Although not related, and I'm not submitting this as a bug report to be diagnosed, but merely because the timing seems relevant, but one of my sites recieved a very strange error from PayPal yesterday.

    Code:
    Response: 
    Array
    (
        [<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"><html><head><title>500 Internal Server Error</title></head><body><h1>Internal Server Error</h1><p>The server encountered an internal error ormisconfiguration and was unable to completeyour request.</p><p>Please contact the server administrator, [email protected] and inform them of the time the error occurred,and anything you might have done that may havecaused the error.</p><p>More information about this error may be availablein the server error log.</p><p>Additionally, a 404 Not Founderror was encountered while trying to use an ErrorDocument to handle the request.</p><hr><address>Apache Server at <a href] => "mailto:[email protected]">api-3t.paypal.com</a> Port 443</address></body></html>
        [CURL_ERRORS] => 
    )
    
    
    
    
    GetTransactionDetails, Elapsed: 487ms -- Failed
    My point being is that there appears that there have been problems with PayPal's server configurations over the last 24 hours or so, and as such, any 'recent' PayPal issues may simply be a transient nature and just bad timing.

    Just something to keep in mind before anyone start trying to look for a problem that may no longer exist.

    Cheers
    RodG

  2. #12
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default Re: V154 Still Getting Handshake Error After Upgrade

    Quote Originally Posted by DrByte View Post
    For both of you, please post the URL to your site ... I'm specifically interested in visiting the your_site.com/extras/curltester.php?paypal=1 page to see what results it gives there.
    Sorry, I did not post on a few of the other threads with the same issue because I did not want to hijack someone else's issues in case they are not the same.

    My site is www.filmjackets.com and the store is www.filmjackets.com/ecommerce3/

    Don't mind the appearance of the site, because I have not bothered to fix the template until I can accept orders.

    EDIT: Not sure if it is relevant, but I just received a membership payment through the Wordpress portion of the site via PayPal. It probably means nothing but I thought I would mention it just in case...

    Rick
    Last edited by Rick5150; 5 Feb 2015 at 07:39 PM.

  3. #13
    Join Date
    Jan 2004
    Posts
    66,445
    Plugin Contributions
    81

    Default Re: V154 Still Getting Handshake Error After Upgrade

    Okay, as I hinted at in an earlier post, try this:

    paypal_curl.php ... you had commented out CURLOPT_SSLVERSION => 3

    Instead, uncomment it and change the 3 to either 4 or 6, and then try getting to Express Checkout. Do you still get the handshake error?

    This is not an ideal approach, but it can get around some misconfigured server problems.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  4. #14
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default Re: V154 Still Getting Handshake Error After Upgrade

    I do not have CURLOPT_SSLVERSION => 3 in the current version of the file since I installed new.

    I am looking under includes/modules/payments/paypal/paypal_curl.php

    Am I in the wrong file?

  5. #15
    Join Date
    Jan 2004
    Posts
    66,445
    Plugin Contributions
    81

    Default Re: V154 Still Getting Handshake Error After Upgrade

    You are correct: in v1.5.4 that won't be present.

    But since your server is apparently not able to auto-negotiate, I'm suggesting that you force it to a value that's current "today" (no guarantees about tomorrow).

    So, you'll have to manually add it to v1.5.4

    Find this line (around line 55):
    Code:
    CURLOPT_TIMEOUT => 45,
    Add a new line below it, saying this:
    Code:
    CURLOPT_SSLVERSION => 4,
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #16
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default Re: V154 Still Getting Handshake Error After Upgrade

    I still get a blank page.

  7. #17
    Join Date
    Jan 2004
    Posts
    66,445
    Plugin Contributions
    81

    Default Re: V154 Still Getting Handshake Error After Upgrade

    Quote Originally Posted by Rick5150 View Post
    I still get a blank page.
    A blank page is typically caused by a PHP error occurring, and normally those are logged to /logs/myDebug-xxxxxxxx.log
    What's the content of the latest myDebug-xxxxx.log file in that folder when you trigger that blank page?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  8. #18
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    279
    Plugin Contributions
    4

    Default Re: V154 Still Getting Handshake Error After Upgrade

    Hi

    I am also having the same paypal issues.

    Am using 1.5.1 and recently commented out the "CURLOPT_SSLVERSION => 3," line.

    Everything has been fine with paypal until last night.

    At your advice I put the above line back in and changed it to -

    CURLOPT_SSLVERSION => 4,

    but it still comes back with

    An error occurred when we tried to contact the payment processor. Please try again, select an alternate payment method, or contact the store owner for assistance. () - (7) couldn't connect to host


    I suspect this is a paypal site issue - but can anyone confirm ?

  9. #19
    Join Date
    Jan 2004
    Posts
    66,445
    Plugin Contributions
    81

    Default Re: V154 Still Getting Handshake Error After Upgrade

    Quote Originally Posted by royaldave View Post
    () - (7) couldn't connect to host
    Um, no, that's NOT the same issue. Let's discuss that in the other discussion thread you've already started.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #20
    Join Date
    Dec 2010
    Posts
    108
    Plugin Contributions
    0

    Default Re: V154 Still Getting Handshake Error After Upgrade

    Quote Originally Posted by DrByte View Post
    A blank page is typically caused by a PHP error occurring, and normally those are logged to /logs/myDebug-xxxxxxxx.log
    What's the content of the latest myDebug-xxxxx.log file in that folder when you trigger that blank page?
    Ah, it is looking for flatone.php...

    Code:
    [06-Feb-2015 03:17:52 America/Denver] PHP Warning:  include_once(includes/modules/shipping/flatone.php): failed to open stream: No such file or directory in /home3/filmjack/public_html/ecommerce3/includes/classes/shipping.php on line 58
    [06-Feb-2015 03:17:52 America/Denver] PHP Warning:  include_once(): Failed opening 'includes/modules/shipping/flatone.php' for inclusion (include_path='.:/usr/php/54/usr/lib64:/usr/php/54/usr/share/pear') in /home3/filmjack/public_html/ecommerce3/includes/classes/shipping.php on line 58
    [06-Feb-2015 03:17:52 America/Denver] PHP Fatal error:  Class 'flatone' not found in /home3/filmjack/public_html/ecommerce3/includes/classes/shipping.php on line 59

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. v155 Getting ajax error in v155 with v154 Westminster template
    By godt in forum General Questions
    Replies: 3
    Last Post: 11 Jul 2016, 12:41 AM
  2. v155 Getting ajax error in v155 with v154 Westminster template
    By MCS_Computers in forum General Questions
    Replies: 10
    Last Post: 21 Mar 2016, 03:58 PM
  3. v154 After changing date format still getting error
    By Annie_zaz in forum General Questions
    Replies: 6
    Last Post: 21 Oct 2015, 02:35 PM
  4. v154 Still getting checkout error for PayPal even after update.
    By Jen Will in forum PayPal Express Checkout support
    Replies: 21
    Last Post: 5 Feb 2015, 07:42 AM
  5. Replies: 5
    Last Post: 6 Oct 2012, 08:53 PM

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