Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Credit Card payment method option doesn't show

    5 of 6 sites all v1.5.1 have Pro working fine but on this site www.harmonyball.net.au, it isn't showing credit card payment option, whether standard ZC checkout system or OPC selected.

    I recently installed one page checkout plugin (OPC) to all these sites - please refer to this OPC thread https://www.zen-cart.com/showthread....-Thread/page54 (plus following 2 pages) where lat9 has been trying to help me sort out the issue of the one site not showing credit card option - it appears it isn't an issue with the plugin hence posting in here as it appears to be a paypal pro issue.

    Any assistance would be appreciated.

    cheers,
    Mike

    Attachment 17199

    Attachment 17200

  2. #2
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Credit Card payment method option doesn't show

    Quote Originally Posted by shags38 View Post
    5 of 6 sites all v1.5.1 have Pro working fine but on this site www.harmonyball.net.au, it isn't showing credit card payment option, whether standard ZC checkout system or OPC selected.

    I recently installed one page checkout plugin (OPC) to all these sites - please refer to this OPC thread https://www.zen-cart.com/showthread....-Thread/page54 (plus following 2 pages) where lat9 has been trying to help me sort out the issue of the one site not showing credit card option - it appears it isn't an issue with the plugin hence posting in here as it appears to be a paypal pro issue.

    Any assistance would be appreciated.

    cheers,
    Mike

    Attachment 17199

    Attachment 17200
    Hold off responding for a while - received alert that
    paypaldp Module disabled because SSL is not enabled on this site.
    Double checking with host to see what the issue is.

    cheers,
    Mike

  3. #3
    Join Date
    Jul 2012
    Posts
    16,733
    Plugin Contributions
    17

    Default Re: Credit Card payment method option doesn't show

    Verify that the following has been followed/applied: https://www.zen-cart.com/content.php...alled-zen-cart
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #4
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Credit Card payment method option doesn't show

    Quote Originally Posted by mc12345678 View Post
    Verify that the following has been followed/applied: https://www.zen-cart.com/content.php...alled-zen-cart
    I have validated that the SSL certificate is in place and working correctly, it can be checked here https://www.sslshopper.com/ssl-check...onyball.net.au

    I am however still getting the error message via email 'paypaldp Module disabled because SSL is not enabled on this site' - so I have no idea what the problem may be.

    Looking for some help here.

    cheers,
    Mike

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

    Default Re: Credit Card payment method option doesn't show

    Quote Originally Posted by shags38 View Post
    I have validated that the SSL certificate is in place and working correctly, it can be checked here https://www.sslshopper.com/ssl-check...onyball.net.au

    I am however still getting the error message via email 'paypaldp Module disabled because SSL is not enabled on this site' - so I have no idea what the problem may be.

    Looking for some help here.

    cheers,
    Mike
    Oh yeah, I forgot that there is a set of certificates needed on your server in order for your server to talk with other services with SSL which is independent of the SSL for customers to communicate with your website.

    Hmm. There's a couple of threads on the topic and I know there's a few that seem to know the source of the needed files rather quickly.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #6
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Credit Card payment method option doesn't show

    Quote Originally Posted by mc12345678 View Post
    Oh yeah, I forgot that there is a set of certificates needed on your server in order for your server to talk with other services with SSL which is independent of the SSL for customers to communicate with your website.

    Hmm. There's a couple of threads on the topic and I know there's a few that seem to know the source of the needed files rather quickly.
    That will be interesting to ascertain - all my sites are configured the same and use the same type of SSL Certs from the same source and are at the same host - wonder why this one would be getting this error. Do the log files at the OPC thread mentioned in the first post reflect this SSL error?

    cheers,
    Mike

  7. #7
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Credit Card payment method option doesn't show

    This is a response from my host after asking them to compare certificates with another site of mine that does not have this issue
    The site harmonyballpendant and harmonyball both have certificates that have the same protocol.

    The connection to this site is encrypted and authenticated using a strong protocol (TLS 1.2), a strong key exchange (ECDHE_RSA with P-256), and a strong cipher (AES_128_GCM).

    This may be a cached issue or an issue with the module. Are you able to contact the developers of the module to see if they can notice anything?

  8. #8
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Credit Card payment method option doesn't show

    have cleared browser cache and flushed dns to no effect

    cheers,
    Mike

  9. #9
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,491
    Plugin Contributions
    88

    Default Re: Credit Card payment method option doesn't show

    Mike, is the site that's not working set for "all SSL all the time" using DrByte's recommended:
    Code:
    define('HTTP_SERVER', 'https://www.example.com');
    define('HTTPS_SERVER', 'https://www.example.com');
    define('ENABLE_SSL', 'false');
    If so, you'll need to edit your copy of /includes/modules/payment/paypaldp.php, locating this section:
    Code:
      /**
       *  Sets payment module status based on zone restrictions etc
       */
      function update_status() {
        global $order, $db;
    //    $this->zcLog('update_status', 'Checking whether module should be enabled or not.');
        // if store is not running in SSL, cannot offer credit card module, for PCI reasons
        if (!defined('ENABLE_SSL') || ENABLE_SSL != 'true') {
          $this->enabled = FALSE;
          $this->zcLog('update_status', 'Module disabled because SSL is not enabled on this site.');
        }
    and change the highlighted code fragment:
    Code:
      /**
       *  Sets payment module status based on zone restrictions etc
       */
      function update_status() {
        global $order, $db;
    //    $this->zcLog('update_status', 'Checking whether module should be enabled or not.');
        // if store is not running in SSL, cannot offer credit card module, for PCI reasons
        if (strpos(HTTP_SERVER, 'https:') !== 0 || !(defined('ENABLE_SSL') && ENABLE_SSL == 'true')) {
          $this->enabled = FALSE;
          $this->zcLog('update_status', 'Module disabled because SSL is not enabled on this site.');
        }

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

    Default Re: Credit Card payment method option doesn't show

    Quote Originally Posted by shags38 View Post
    That will be interesting to ascertain - all my sites are configured the same and use the same type of SSL Certs from the same source and are at the same host - wonder why this one would be getting this error. Do the log files at the OPC thread mentioned in the first post reflect this SSL error?

    cheers,
    Mike
    The SSL issue that appears to be reported does not fall into the SSL cert that you have obtained to support your Web browser communicating with SSL to your site. This was stated before. It appears to be related to your server to communicate to other authorities in a secure manner. Compltely differen SSL certificates.

    The report from your host appears to double the discussion of the wrong SSL being in question.

    I found this thread (searching on paypal and SSL) that includes a pretty in depth discussion on the topic, links to other discussion to correct the issue and tests to be performed.

    https://www.zen-cart.com/showthread.php?216560
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Disable Credit Card Option on Payment Method
    By Ozwide in forum Built-in Shipping and Payment Modules
    Replies: 11
    Last Post: 30 Dec 2009, 04:43 PM
  2. Step 2 of 3 - Payment Information doesn´t show payment method, bug?
    By dadex in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 10 Jun 2009, 03:42 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