Results 1 to 7 of 7
  1. #1
    Join Date
    Dec 2007
    Posts
    63
    Plugin Contributions
    0

    Default HEADER_LOGO_IMAGE does not exist error

    File does not exist: /home/rdrascom/public_html/Zen/includes/templates/template_default/images/HEADER_LOGO_IMAGE

    How would i resolve this error that is appearing in my "error logs"on host?? i found where its being called in the tpl_header but not sure if i can just remove the call or not. I do have a flash header and that might be part of the issue?? any ideas??

    thanks

  2. #2
    Join Date
    Dec 2007
    Posts
    63
    Plugin Contributions
    0

    Default Re: HEADER_LOGO_IMAGE does not exist error

    no one has any insight on this??

  3. #3
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: HEADER_LOGO_IMAGE does not exist error

    Try posting your tpl_header code - do you not have a logo?
    A link to your site also
    Here is code from one that works:
    Code:
    <!--bof-branding display-->
    <div id="logoWrapper">
        <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
    		<div id="flashcontent">    
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"        
            <param name="movie" value="header.swf">
            <param name="bgcolor" value="#FFFFFF">
            <param name="quality" value="high">
            <param name="wmode" value="transparent">
            <param name="allowscriptaccess" value="samedomain">
    
            <embed
              type="application/x-shockwave-flash"
              pluginspage="http://www.macromedia.com/go/getflashplayer"
              name="flashcontent"
              width="600" height="104"
              src="includes/templates/Template_dir/images/header.swf"
              bgcolor="#FFFFFF"
              quality="high"
              wmode="transparent"
              swliveconnect="true"
              allowscriptaccess="samedomain"
              <noembed>
              </noembed>
            </embed></object>
        </div>
    Zen-Venom Get Bitten

  4. #4
    Join Date
    Dec 2007
    Posts
    63
    Plugin Contributions
    0

    Default Re: HEADER_LOGO_IMAGE does not exist error

    Thanks for answering
    website is www.rdracingproducts.com/Zen

    and the code is as follows:

    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
    <?php
    if (HEADER_SALES_TEXT != '') {
    ?>
    <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
    <?php
    }
    ?>
    <?php
    if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
    <?php
    }
    }
    ?>
    </div>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    </div>
    <br class="clearBoth" />
    <!--eof-branding display-->

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

    Default Re: HEADER_LOGO_IMAGE does not exist error

    Sounds like you are missing the definition in your language files:
    PHP Code:
    /includes/languages/english/header.php

    Line 
    #24 : define('HEADER_LOGO_IMAGE', 'logo.gif'); 
    This would also be in your templates and overrides directory if you are customizing the file:
    /includes/languages/english/your_template_dir/header.php

    NOTE: on DEFINE definitions you cannot just delete them ... they should be set to no value or something else if you are not using them ...

    In this case you could set the logo.gif to an image that is a pixel in size if you do not use it ... or edit your header.php to not call that 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
    Dec 2007
    Posts
    63
    Plugin Contributions
    0

    Default Re: HEADER_LOGO_IMAGE does not exist error

    Thanks a ton Ajeh!!

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

    Default Re: HEADER_LOGO_IMAGE does not exist error

    You are most welcome ... glad this could be of help to you ...
    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. Error! Order does not exist
    By imaginarynumber in forum Managing Customers and Orders
    Replies: 1
    Last Post: 16 Jul 2010, 11:49 PM
  2. zen_order does not exist error in database no orders show in admin
    By Lyon in forum Managing Customers and Orders
    Replies: 2
    Last Post: 23 Mar 2010, 10:42 PM
  3. Error: Catalog images directory does not exist
    By roystrainworld in forum General Questions
    Replies: 2
    Last Post: 23 Oct 2009, 10:11 PM
  4. Replies: 6
    Last Post: 3 Apr 2009, 01:20 PM
  5. Error: Order does not exist.
    By divaboutiques in forum Managing Customers and Orders
    Replies: 3
    Last Post: 19 Apr 2007, 04:36 AM

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