Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Step 3 brings me to blank page

    When I recently tested to checkout after I added a few items to shopping cart, selected what shipping I want, and then hit next to go to step 3 to this page http://themccormickshop.com/index.ph...ckout_shipping, its blank, I only have paypal express enabled

  2. #2
    Join Date
    Mar 2004
    Posts
    688
    Plugin Contributions
    0

    Default Re: Step 3 brings me to blank page

    http://www.zen-cart.com/forum/showthread.php?t=84613

    Install this and it will tell you what the error is.
    Write the error here and let's see if we can help.
    Marg

  3. #3
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: Step 3 brings me to blank page

    Quote Originally Posted by Marg View Post
    http://www.zen-cart.com/forum/showthread.php?t=84613

    Install this and it will tell you what the error is.
    Write the error here and let's see if we can help.
    Marg
    Thanks for the info this is what I got!

    PHP Code:
    [08-Nov-2008 15:57:28PHP Warning:  Wrong parameter count for define() in /home/tms/public_html/includes/languages/english/cherry_zen/meta_tags.php on line 17
    [08-Nov-2008 15:57:28PHP Warning:  Cannot modify header information headers already sent by (output started at /home/tms/public_html/includes/languages/english/modules/shipping/table.php:57in /home/tms/public_html/includes/functions/functions_general.php on line 44 

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

    Default Re: Step 3 brings me to blank page

    Quote Originally Posted by chris32882 View Post
    [08-Nov-2008 15:57:28] PHP Warning: Wrong parameter count for define() in /home/tms/public_html/includes/languages/english/cherry_zen/meta_tags.php on line 17
    You've made a typo on the stated line number of the file mentioned in the error message.
    .

    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.

  5. #5
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: Step 3 brings me to blank page

    Quote Originally Posted by DrByte View Post
    You've made a typo on the stated line number of the file mentioned in the error message.
    The funny thing is, I haven't edited meta_tags.php since 2 weeks ago. But I did edit table.php hrmm I dunno

  6. #6
    Join Date
    Mar 2004
    Posts
    688
    Plugin Contributions
    0

    Default Re: Step 3 brings me to blank page

    What's on lines 15, 16, 17, 18, & 19 in the file:
    [FONT=Courier New]includes/languages/english/cherry_zen/meta_tags.php?[/FONT]

  7. #7
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: Step 3 brings me to blank page

    Quote Originally Posted by Marg View Post
    What's on lines 15, 16, 17, 18, & 19 in the file:
    [FONT=Courier New]includes/languages/english/cherry_zen/meta_tags.php?[/FONT]

    Just this :

    Code:
    // Custom Keywords
    define('');
    
    // Home Page Only:

  8. #8
    Join Date
    Mar 2004
    Posts
    688
    Plugin Contributions
    0

    Default Re: Step 3 brings me to blank page

    // Custom Keywords
    define('CUSTOM_KEYWORDS', '');

    Should look like that

  9. #9
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: Step 3 brings me to blank page

    Quote Originally Posted by Marg View Post
    // Custom Keywords
    define('CUSTOM_KEYWORDS', '');

    Should look like that

    I changed it, still getting blank page

  10. #10
    Join Date
    Mar 2004
    Posts
    688
    Plugin Contributions
    0

    Default Re: Step 3 brings me to blank page

    Chances are that you've done the same thing with other defines. Check to make sure they are just as the one above is. The define ('CUSTOMWHATEVER','')

    Code:
    <?php
    /**
     * @package languageDefines
     * @copyright Copyright 2003-2007 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: meta_tags.php 6668 2007-08-16 10:05:09Z drbyte $
     */
    // page title
    define('TITLE', '');
    // Site Tagline
    define('SITE_TAGLINE', '');
    // Custom Keywords
    define('CUSTOM_KEYWORDS', '');
    // Home Page Only:
      define('HOME_PAGE_META_DESCRIPTION', '');
      define('HOME_PAGE_META_KEYWORDS', '');
      // NOTE: If HOME_PAGE_TITLE is left blank (default) then TITLE and SITE_TAGLINE will be used instead.
      define('HOME_PAGE_TITLE', ''); // usually best left blank
    
    // EZ-Pages meta-tags.  Follow this pattern for all ez-pages for which you desire custom metatags. Replace the # with ezpage id.
    // If you wish to use defaults for any of the 3 items for a given page, simply do not define it. 
    // (ie: the Title tag is best not set, so that site-wide defaults can be used.)
    // repeat pattern as necessary
      define('META_TAG_DESCRIPTION_EZPAGE_#','');
      define('META_TAG_KEYWORDS_EZPAGE_#','');
      define('META_TAG_TITLE_EZPAGE_#', '');
    // Per-Page meta-tags. Follow this pattern for individual pages you wish to override. This is useful mainly for additional pages.
    // replace "page_name" with the UPPERCASE name of your main_page= value, such as ABOUT_US or SHIPPINGINFO etc.
    // repeat pattern as necessary
      define('META_TAG_DESCRIPTION_page_name','');
      define('META_TAG_KEYWORDS_PAGE_page_name','');
      define('META_TAG_TITLE_PAGE_page_name', '');
    // Review Page can have a lead in:
      define('META_TAGS_REVIEW', 'Reviews: ');
    // separators for meta tag definitions
    // Define Primary Section Output
      define('PRIMARY_SECTION', ' : ');
    // Define Secondary Section Output
      define('SECONDARY_SECTION', ' - ');
    // Define Tertiary Section Output
      define('TERTIARY_SECTION', ', ');
    // Define divider ... usually just a space or a comma plus a space
      define('METATAGS_DIVIDER', ' ');
    // Define which pages to tell robots/spiders not to index
    // This is generally used for account-management pages or typical SSL pages, and usually doesn't need to be touched.
      define('ROBOTS_PAGES_TO_SKIP','login,logoff,create_account,account,account_edit,account_history,account_history_info,account_newsletters,account_notifications,account_password,address_book,advanced_search,advanced_search_result,checkout_success,checkout_process,checkout_shipping,checkout_payment,checkout_confirmation,cookie_usage,create_account_success,contact_us,download,download_timeout,customers_authorization,down_for_maintenance,password_forgotten,time_out,unsubscribe,info_shopping_cart,popup_image,popup_image_additional,product_reviews_write,ssl_check');
    
    // favicon setting
    // There is usually NO need to enable this unless you need to specify a path and/or a different filename
    //  define('FAVICON','favicon.ico');
    ?>

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 check out or login brings blank page (500 error)
    By anthonytjm in forum General Questions
    Replies: 5
    Last Post: 6 Dec 2012, 09:03 PM
  2. Blank Page Step 3 Order Confirmation page
    By jodijean in forum General Questions
    Replies: 15
    Last Post: 6 Jun 2011, 10:26 PM
  3. Blank Page in Step 2
    By KyleYates in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 16 Apr 2009, 12:15 PM
  4. Step 2 - Continue Checkout - Brings Blank Page
    By Securfocus in forum Built-in Shipping and Payment Modules
    Replies: 8
    Last Post: 5 Feb 2009, 09:03 PM
  5. Blank Page After Step 3 of Checkout
    By bpickett in forum General Questions
    Replies: 27
    Last Post: 21 Oct 2006, 03:19 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