Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16
  1. #11
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,495
    Plugin Contributions
    88

    Default Re: RANDOM White Page when Credit Card Checkout?

    Yep, that addthis plugin is "polluting" the javascript/jQuery pool and the AJAX checkout is very dependent on that pool being "clean".

  2. #12
    Join Date
    Aug 2004
    Posts
    762
    Plugin Contributions
    0

    Default Re: RANDOM White Page when Credit Card Checkout?

    Quote Originally Posted by lat9 View Post
    Yep, that addthis plugin is "polluting" the javascript/jQuery pool and the AJAX checkout is very dependent on that pool being "clean".
    Yikes......alright, I will see if we can eliminate that from the checkout pages. Not sure exactly how to do that since it's part of our global header file (in common/html_header.php).

    Until I can figure it out, I'll keep the PSS setting turned off as swguy suggested.

    Is there a php FLAG or something I can put in the HEAD area to determine if we're on the checkout_payment page, and therefore not have that part of the code outputted? Let me know. If not, I'll do some more hunting around.
    Last edited by Jeff_Mash; 12 Aug 2019 at 09:19 PM.
    - Jeff

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

    Default Re: RANDOM White Page when Credit Card Checkout?

    Could put it within the following php check:
    Code:
    <?php
    if (empty($_GET['main_page']) || substr($_GET['main_page'], 0, 9) != 'checkout_') {
    ?>
    //script code
    <?php } ?>
    Last edited by mc12345678; 12 Aug 2019 at 09:40 PM.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #14
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,495
    Plugin Contributions
    88

    Default Re: RANDOM White Page when Credit Card Checkout?

    Quote Originally Posted by mc12345678 View Post
    Could put it within the following php check:
    Code:
    <?php
    if (empty($_GET['main_page']) || substr($_GET['main_page'], 0, 9) != 'checkout_') {
    ?>
    //script code
    <?php } ?>
    ... or, more succinctly:
    Code:
    <?php
    if (empty($_GET['main_page']) || strpos($_GET['main_page'], 'checkout_') !== 0) {
    ?>
    //script code
    <?php } ?>

  5. #15
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,699
    Plugin Contributions
    123

    Default Re: RANDOM White Page when Credit Card Checkout?

    Where's the love for $current_page_base ?
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  6. #16
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,495
    Plugin Contributions
    88

    Default Re: RANDOM White Page when Credit Card Checkout?

    One other thing to check ... @Jeff_Mash, what is the store's setting for Configuration->Gzip Compression? If that's enabled, try disabling the compression and re-enabling the AJAX checkout. I'll bet that it's that setting that is causing the issue.

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Replies: 5
    Last Post: 15 Nov 2010, 07:19 PM
  2. checkout_process is a white blank page after credit card order
    By psychosis in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 1 Nov 2010, 05:56 AM
  3. Credit Card fields messed up on checkout-payment page
    By belaze in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 22 Mar 2010, 06:48 AM
  4. Duplicate credit card fields on checkout page
    By sandykr09 in forum Managing Customers and Orders
    Replies: 22
    Last Post: 12 Dec 2009, 04:11 PM
  5. Why do I have credit card fields when the credit card module is not enabled?
    By RayDube in forum Built-in Shipping and Payment Modules
    Replies: 10
    Last Post: 8 Jan 2009, 07:39 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