Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    Jul 2006
    Posts
    60
    Plugin Contributions
    0

    Default Re: Still getting checkout error for PayPal even after update.

    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. () - (35) error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure

    That is the error.

  2. #12
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,748
    Plugin Contributions
    0

    Default Re: Still getting checkout error for PayPal even after update.

    Dr. Byte requires seeing the requested lines of code from that file to determine what version of the file you have. The error screams that the upgrade was not done correctly, or that your hosts server is set up incorrectly.
    Last edited by barco57; 4 Feb 2015 at 04:48 AM.
    Mike
    GeekHost - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  3. #13
    Join Date
    Jul 2006
    Posts
    60
    Plugin Contributions
    0

    Default Re: Still getting checkout error for PayPal even after update.

    text/x-generic paypal_curl.php
    PHP script text
    Code:
    <?php
    /**
     * paypal_curl.php communications class for PayPal Express Checkout / Website Payments Pro / Payflow Pro payment methods
     *
     * @package paymentMethod
     * @copyright Copyright 2003-2014 Zen Cart Development Team
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version GIT: $Id: Author: DrByte  Sat Nov 2 12:51:04 2013 -0400 Modified in v1.5.3 $
     */
    
    /**
     * PayPal NVP (v61) and Payflow Pro (v4 HTTP API) implementation via cURL.
     */
    class paypal_curl extends base {
    
      /**
       * What level should we log at? Valid levels are:
       *   1 - Log only severe errors.
       *   2 - Date/time of operation, operation name, elapsed time, success or failure indication.
       *   3 - Full text of requests and responses and other debugging messages.
       *
       * @access protected
       *
       * @var integer $_logLevel
       */
      var $_logLevel = 3;
    
      /**
       * If we're logging, what directory should we create log files in?
       * Note that a log name coincides with a symlink, logging will
       * *not* be done to avoid security problems. File names are
       * <DateStamp>.PayflowPro.log.
       *
       * @access protected
       *
       * @var string $_logFile
       */
      var $_logDir = DIR_FS_LOGS;
    
      /**
       * Debug or production?
       */
      var $_server = 'sandbox';
    
      /**
       * URL endpoints -- defaults here are for three-token NVP implementation
       */
      var $_endpoints = array('live'    => 'https://api-3t.paypal.com/nvp',
                              'sandbox' => 'https://api-3t.sandbox.paypal.com/nvp');
      /**
       * Options for cURL. Defaults to preferred (constant) options.
       */
      var $_curlOptions = array(CURLOPT_HEADER => 0,
                                CURLOPT_RETURNTRANSFER => TRUE,
                                CURLOPT_TIMEOUT => 45,
                                CURLOPT_CONNECTTIMEOUT => 10,
                                CURLOPT_FOLLOWLOCATION => FALSE,
                              //CURLOPT_SSL_VERIFYPEER => FALSE, // Leave this line commented out! This should never be set to FALSE on a live site!
                              //CURLOPT_CAINFO => '/local/path/to/cacert.pem', // for offline testing, this file can be obtained from http://curl.haxx.se/docs/caextract.html ... should never be used in production!
                                CURLOPT_SSLVERSION => 3,
                                CURLOPT_FORBID_REUSE => TRUE,
                                CURLOPT_FRESH_CONNECT => TRUE,
                                CURLOPT_POST => TRUE,
                                );
    ...
    Last edited by DrByte; 4 Feb 2015 at 06:20 AM. Reason: excess lines removed

  4. #14
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,748
    Plugin Contributions
    0

    Default Re: Still getting checkout error for PayPal even after update.

    That is the file from a 1.5.3 install instead of a 1.5.4
    Mike
    GeekHost - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  5. #15
    Join Date
    Jul 2006
    Posts
    60
    Plugin Contributions
    0

    Default Re: Still getting checkout error for PayPal even after update.

    Really? When I log into admin it says it's up to date. I hired someone to update it for me.

  6. #16
    Join Date
    Jul 2012
    Posts
    16,734
    Plugin Contributions
    17

    Default Re: Still getting checkout error for PayPal even after update.

    Quote Originally Posted by Jen Will View Post
    Really? When I log into admin it says it's up to date. I hired someone to update it for me.
    What does the upper portion of the window report when the version link is selected in the admin panel as far as php version and ZC version?

    Besides that, would have a discussion with the hired help about the situation. Even if the file were not updated to the 1.5.4 version, the base cause of the SSL3 error hasn't been addressed.

    Change this line:
    CURLOPT_SSLVERSION => 3,
    To:
    // CURLOPT_SSLVERSION => 3,

    That change at least will allow sales to go through while figuring out and addressing other issues..
    Last edited by mc12345678; 4 Feb 2015 at 05:36 AM.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #17
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,748
    Plugin Contributions
    0

    Default Re: Still getting checkout error for PayPal even after update.

    when you go to tools>server/version info what does it report for versions?
    If a file buried in inludes/modules/payment/paypal folder is not up to date, it begs the question about what else was not uploaded correctly.
    Mike
    GeekHost - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  8. #18
    Join Date
    Jul 2006
    Posts
    60
    Plugin Contributions
    0

    Default Re: Still getting checkout error for PayPal even after update.

    This has been fixed. Thank you.

  9. #19
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: Still getting checkout error for PayPal even after update.

    Quote Originally Posted by Jen Will View Post
    This has been fixed.
    And for others searching for a solution to a similar problem and find this thread the solution was????

  10. #20
    Join Date
    Jan 2007
    Location
    Australia
    Posts
    6,167
    Plugin Contributions
    7

    Default Re: Still getting checkout error for PayPal even after update.

    Quote Originally Posted by gilby View Post
    And for others searching for a solution to a similar problem and find this thread the solution was????
    My guess it was the POODLE update that hadn't been applied.
    ------------------------------
    Change this line:
    CURLOPT_SSLVERSION => 3,
    To:
    // CURLOPT_SSLVERSION => 3,
    -----------------------------------------

    Cheers
    RodG

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v154 Image and files still remains in server even after delete
    By diptimoy in forum General Questions
    Replies: 14
    Last Post: 23 Oct 2015, 09:05 AM
  2. 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
  3. v154 V154 Still Getting Handshake Error After Upgrade
    By Rick5150 in forum PayPal Express Checkout support
    Replies: 31
    Last Post: 6 Feb 2015, 10:01 PM
  4. Can I hide the regular checkout button? Getting a PayPal error
    By jdsmith8 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 19 Sep 2008, 01:55 PM
  5. Paypal IPN not even getting PP payment page
    By LostInSpace in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 17 Aug 2007, 08:35 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR