Results 1 to 10 of 14

Hybrid View

  1. #1
    Join Date
    Apr 2009
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Help Clicking on category gives me blank page

    I have a clean install. I add categories and then add product. When I click on category name, it goes to a blank page.
    If you go to "New" product or any other way, it works. Just not when using category. What's wrong?
    Here's website. Scuse the mess as I just started working on it and still have lots to do

    http://www.giorgioglassdesigns.com

  2. #2
    Join Date
    Apr 2009
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Re: Help Clicking on category gives me blank page

    Found this in logs but I have no idea what it means


    [13-May-2015 19:12:45 GMT] PHP Warning: Cannot modify header information - headers already sent by (output started at /webroot/g/i/giorg002/giorgioglassdesigns.com/www/includes/languages/english/header.php:3) in /webroot/g/i/giorg002/giorgioglassdesigns.com/www/includes/init_includes/init_templates.php on line 78

  3. #3
    Join Date
    Apr 2009
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Re: Help Clicking on category gives me blank page

    Well I have read, read, and read and I think I'm going to scrap it and go check out another opencart software. I followed all advice here and it still gives me a blank screen if I change that sentence. Have no idea why~
    Wish more people were active to help but I need a site and have no idea what to do. If it doesn't work, I may be back.

  4. #4
    Join Date
    Apr 2009
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Re: Help Clicking on category gives me blank page

    This is what is coming up now

    [14-May-2015 02:53:24 GMT] PHP Warning: Cannot modify header information - headers already sent by (output started at /webroot/g/i/giorg002/giorgioglassdesigns.com/www/includes/languages/english/index.php:3) in /webroot/g/i/giorg002/giorgioglassdesigns.com/www/includes/functions/functions_general.php on line 46

  5. #5
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Help Clicking on category gives me blank page

    Could you post the first 10 lines of the file:
    /includes/languages/english/index.php

    from the file?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #6
    Join Date
    Apr 2009
    Location
    California
    Posts
    36
    Plugin Contributions
    0

    Default Re: Help Clicking on category gives me blank page

    Quote Originally Posted by Ajeh View Post
    Could you post the first 10 lines of the file:
    /includes/languages/english/index.php

    from the file?
    On my way out so copied and pasted it all
    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html><head>
    <?php /**
    
     * @package languageDefines
    
     * @copyright Copyright 2003-2006 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: index.php 19537 2011-09-20 17:14:44Z drbyte $
    
     */
    
    
    
    define('TEXT_MAIN','This is the main define statement for the page for english when no template defined file exists. It is located in: <strong>/includes/languages/english/index.php</strong>');
    
    
    
    // Showcase vs Store
    
    if (STORE_STATUS == '0') {
    
      define('TEXT_GREETING_GUEST', '');
    
    } else {
    
      define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.');
    
    }
    
    
    
    define('TEXT_GREETING_PERSONAL', 'Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?');
    
    
    
    define('TEXT_INFORMATION', 'Define your main Index page copy here.');
    
    
    
    //moved to english
    
    //define('TABLE_HEADING_FEATURED_PRODUCTS','Featured Products');
    
    
    
    //define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');
    
    //define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products');
    
    //define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');
    
    
    
    if ( ($category_depth == 'products') || (zen_check_url_get_terms()) ) {
    
      // This section deals with product-listing page contents
    
      define('HEADING_TITLE', 'Available Products');
    
      define('TABLE_HEADING_IMAGE', 'Product Image');
    
      define('TABLE_HEADING_MODEL', 'Model');
    
      define('TABLE_HEADING_PRODUCTS', 'Product Name');
    
      define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');
    
      define('TABLE_HEADING_QUANTITY', 'Quantity');
    
      define('TABLE_HEADING_PRICE', 'Price');
    
      define('TABLE_HEADING_WEIGHT', 'Weight');
    
      define('TABLE_HEADING_BUY_NOW', 'Buy Now');
    
      define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.');
    
      define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.');
    
      define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: ');
    
      define('TEXT_SHOW', 'Filter Results by:');
    
      define('TEXT_BUY', 'Buy 1 \'');
    
      define('TEXT_NOW', '\' now');
    
      define('TEXT_ALL_CATEGORIES', 'All Categories');
    
      define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
    
    } elseif ($category_depth == 'top') {
    
      // This section deals with the "home" page at the top level with no options/products selected
    
      /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    
      define('HEADING_TITLE', '');
    
    } elseif ($category_depth == 'nested') {
    
      // This section deals with displaying a subcategory
    
      /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    
      define('HEADING_TITLE', ''); 
    
    }
    
    ?>
    </head><body>
    <br>
    
    <br>
    
    </body></html>
    Last edited by Ajeh; 14 May 2015 at 07:21 PM.

  7. #7
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Help Clicking on category gives me blank page

    In your code you have:
    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html><head>
    <?php 
    /**
    
     * @package languageDefines
    remove the lines at the top of that file they do not belong there ...

    And at the bottom of the file:
    Code:
    ?>
    </head><body>
    <br>
    
    <br>
    
    </body></html>
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 

Similar Threads

  1. v139f Need a help -blank page after clicking contiue chek out
    By feelofsun in forum General Questions
    Replies: 6
    Last Post: 29 Jul 2012, 10:04 PM
  2. v139h 1 product in category/record label gives blank page...?
    By doooomed in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 23 May 2012, 01:52 PM
  3. Upgrade 1.3.8 -> 1.3.9b gives a blank page on admin
    By sanji in forum Upgrading from 1.3.x to 1.3.9
    Replies: 9
    Last Post: 24 May 2010, 06:14 PM
  4. Getting a blank page when clicking on products - HELP!
    By noruga in forum Setting Up Categories, Products, Attributes
    Replies: 5
    Last Post: 22 Sep 2009, 08:50 PM

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