Page 1 of 2 12 LastLast
Results 1 to 10 of 19
  1. #1
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    We are experiencing issue with regards to paypal icon not showing on the payment page. The alt tag for the image is displayed but no image.

    The problem is with this constant: MODULE_PAYMENT_PAYPALEC_MARK_BUTTON_IMG which is actually located on line 96 in includes/languages/english/modules/payment/paypalwpp.php

    PHP Code:
    define('MODULE_PAYMENT_PAYPALEC_MARK_BUTTON_IMG''https://www.paypalobjects.com/en_US/i/logo/PayPal_mark_50x34.gif'); 
    Currently using ZC 1.3.9a

    Thanks!

  2. #2
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    The URL defined is correct.
    What exactly are you saying is "the problem with the constant"?
    .

    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.

  3. #3
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    Quote Originally Posted by DrByte View Post
    The URL defined is correct.
    What exactly are you saying is "the problem with the constant"?
    I don't think there is anything wrong with the constant or the url for that matter. When I copy the url and paste it in my browser I see the image but when I go through checkout on our site there is not image and this is the case when I am using default template or custom template.

    Not sure if this is one of those case with too much security with all the .htaccess files introduced. We've been chasing around customer getting blocked all day to things like sample media files etc.

    I am really just trying to figure out to get the file to display. I know that it's been called on checkout_payment page but I don't know the logic behind. I am almost tempted to hard code the image to move on.

  4. #4
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    Does anyone have a working site using ZC 1.3.9a and paypal express checkout? I am just trying to figure out if this issue I am having is isolated.

    Thanks!

  5. #5
    Join Date
    Nov 2007
    Location
    Sunny Coast, Australia
    Posts
    3,379
    Plugin Contributions
    9

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    Quote Originally Posted by BlessIsaacola View Post
    Does anyone have a working site using ZC 1.3.9a and paypal express checkout? I am just trying to figure out if this issue I am having is isolated.

    Thanks!
    Works fine in my 1.3.9a upgrade (sorry, no link to site as yet, launching in about a week)

    Did you try uninstalling and re-installing PP EC?

    Frank

  6. #6
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    Quote Originally Posted by frank18 View Post
    Works fine in my 1.3.9a upgrade (sorry, no link to site as yet, launching in about a week)

    Did you try uninstalling and re-installing PP EC?

    Frank
    Thanks Frank, I have tried uninstalling but it didn't solve my problem. I guess I will save the image locally and just call it from our server.

    Thanks!

  7. #7
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    Quote Originally Posted by BlessIsaacola View Post
    Not sure if this is one of those case with too much security with all the .htaccess files introduced. We've been chasing around customer getting blocked all day to things like sample media files etc.
    COMPLETELY unrelated.
    .

    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. #8
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    DrByte and Frank, I am lost, this is what renders on the screen when I view source:

    Code:
    <input type="radio" name="payment" value="paypalwpp" id="pmt-paypalwpp" /><label for="pmt-paypalwpp" class="radioButtonLabel"><img src="MODULE_PAYMENT_PAYPALEC_MARK_BUTTON_IMG" alt="Click here to pay via PayPal Express Checkout" /><span style="font-size:11px; font-family: Arial, Verdana;"> Checkout with PayPal.</span></label>
    I am not sure if I am missing a file or if I have a server configuration issue or what could be causing this.

  9. #9
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    That's a classic symptom of the constant not being defined, which suggests that it's commented out (or in a commented-out section bounded by /* and */ ) within the language file, or isn't in the file at all. Or maybe you've introduced a syntax error into the language file thus causing it to abort defining all the constants mentioned therein.
    .

    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. #10
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Paypal Express Checkout icon not showing after 1.3.9 Upgrade

    Quote Originally Posted by DrByte View Post
    That's a classic symptom of the constant not being defined, which suggests that it's commented out (or in a commented-out section bounded by /* and */ ) within the language file, or isn't in the file at all. Or maybe you've introduced a syntax error into the language file thus causing it to abort defining all the constants mentioned therein.
    Is there a different place to define this besides:
    includes/languages/english/modules/payment/paypalwpp.php?

    This is what I have in that section of the file:
    PHP Code:
    // EC buttons -- Do not change these values
    ///// Only valid choices from this page should be used: https://ppmts.custhelp.com/cgi-bin/ppdts.cfg/php/enduser/std_adp.php?p_faqid=632
      
    define('MODULE_PAYMENT_PAYPALWPP_EC_BUTTON_IMG''https://www.paypalobjects.com/en_US/i/btn/btn_xpressCheckout.gif');
      
    define('MODULE_PAYMENT_PAYPALWPP_EC_BUTTON_SM_IMG''https://www.paypalobjects.com/en_US/i/btn/btn_xpressCheckoutsm.gif');
      
    //define('MODULE_PAYMENT_PAYPALEC_MARK_BUTTON_IMG', 'https://www.paypalobjects.com/en_US/i/logo/PayPal_mark_37x23.gif');
      
    define('MODULE_PAYMENT_PAYPALEC_MARK_BUTTON_IMG''https://www.paypalobjects.com/en_US/i/logo/PayPal_mark_50x34.gif');
      
    //define('MODULE_PAYMENT_PAYPALEC_MARK_BUTTON_IMG', 'https://www.paypalobjects.com/en_US/i/bnr/horizontal_solution_PP.gif');
      //define('MODULE_PAYMENT_PAYPALEC_MARK_BUTTON_IMG', 'https://www.paypalobjects.com/en_US/i/bnr/horizontal_solution_PPeCheck.gif'); 
    Thanks for troubleshooting with me.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Paypal Express not working after upgrade from ipn
    By lilrowo in forum PayPal Express Checkout support
    Replies: 3
    Last Post: 30 Dec 2011, 01:56 AM
  2. Cart not showing on paypal express Check after click on express checkout button
    By magic.solve in forum PayPal Express Checkout support
    Replies: 5
    Last Post: 2 Aug 2011, 06:58 PM
  3. Paypal Express Checkout Button Not Showing
    By sports guy in forum PayPal Express Checkout support
    Replies: 2
    Last Post: 4 Mar 2011, 05:29 PM
  4. order not showing up after paypal payment after upgrade
    By ericw in forum General Questions
    Replies: 6
    Last Post: 25 May 2008, 06:54 PM
  5. My PayPal Express Not Working After Upgrade from 1.36 - 1.38
    By cavallom in forum Upgrading from 1.3.x to 1.3.9
    Replies: 2
    Last Post: 31 Dec 2007, 12:31 AM

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