Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Join Date
    Feb 2006
    Posts
    70
    Plugin Contributions
    0

    help question logo has disappeared

    hi there,

    i moved our store to a new server and the logo has disappeared.

    i have a custom logo called 'logo-horiz.gif' in the folder: includes > templates > festival2006* > images

    *festival2006 is the name of my custom theme

    but it's just not showing up in my shop:
    www.imagesfestival.com/store/

    any suggestions? I'm used the developers tool kit to search for HEADER_LOGO_IMAGE AND the results (excluding my admin folders) are below.

    If anyone can point me in the right direction I'd greatly appreciate it.

    thanks!
    Sara



    /home/images/www/www/store/includes/languages/english/classic/header.php

    Line #37 : define('HEADER_LOGO_IMAGE', 'logo.gif');

    /home/images/www/www/store/includes/languages/english/festival2006/header.php

    Line #37 : define('HEADER_LOGO_IMAGE', 'logo-horiz.gif');

    /home/images/www/www/store/includes/languages/english/header.php

    Line #37 : define('HEADER_LOGO_IMAGE', 'logo-horiz.gif');

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

    Default Re: logo has disappeared

    What's the name of your stylesheet?
    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: v1.5.5]
    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!

  3. #3
    Join Date
    Jun 2003
    Posts
    33,715
    Plugin Contributions
    0

    Default Re: logo has disappeared

    http://www.imagesfestival.com/store/...logo-horiz.gif

    Well the image is where it should be - please post your includes/configure.php without your password.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  4. #4
    Join Date
    Feb 2006
    Posts
    70
    Plugin Contributions
    0

    Default Re: logo has disappeared

    includes > templates > festival2006> css > stylesheetNEW.css

    thx!
    S.

  5. #5
    Join Date
    Feb 2006
    Posts
    70
    Plugin Contributions
    0

    Default Re: logo has disappeared

    <?php
    //
    // +----------------------------------------------------------------------+
    // |Zen Cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2004 The Zen Cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the Zen Cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | [email protected] so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    //

    // Define the webserver and path parameters
    // Main webserver: eg, http://localhost - should not be empty for productive servers
    define('HTTP_SERVER', 'http://www.imagesfestival.com');
    // Secure webserver: eg, https://localhost - should not be empty for productive servers
    define('HTTPS_SERVER', 'https://www.imagesfestival.com');
    // secure webserver for checkout procedure?
    define('ENABLE_SSL', 'true');

    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    // * DIR_WS_* = Webserver directories (virtual/URL)
    // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    define('DIR_WS_CATALOG', '/store/');
    define('DIR_WS_HTTPS_CATALOG', '/store/');

    define('DIR_WS_IMAGES', 'images/');
    define('DIR_WS_INCLUDES', 'includes/');
    define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
    define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    define('DIR_WS_BLOCKS', DIR_WS_INCLUDES . 'blocks/');
    define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

    define('DIR_WS_PHPBB', '/');

    // * DIR_FS_* = Filesystem directories (local/physical)
    //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    define('DIR_FS_CATALOG', '/home/images/www/www/store/');

    define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
    define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
    define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
    define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'store');
    define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', 'blocked');
    define('DB_SERVER_PASSWORD', 'blocked');
    define('DB_DATABASE', 'blocked');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'

    // The next 2 "defines" are for SQL cache support.
    // For SQL_CACHE_METHOD, you can select from: none, database, or file
    // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
    // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
    define('SQL_CACHE_METHOD', 'database');
    define('DIR_FS_SQL_CACHE', '/home/images/www/www/store/cache');

    ?>

  6. #6
    Join Date
    Feb 2006
    Posts
    70
    Plugin Contributions
    0

    Default Re: logo has disappeared

    This is a real head scratcher. I think I've looked at all the files that could be involved (my stylesheet, header.php, tpl_header.php) is there anywhere else I should look? If I switch to the classic template the logo shows up fine.

    Thanks zen cart geniuses!

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

    Default Re: logo has disappeared

    Are you sure that this is a valid path?
    PHP Code:
    define('DIR_FS_CATALOG''/home/images/www/www/store/'); 
    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: v1.5.5]
    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!

  8. #8
    Join Date
    Feb 2006
    Posts
    70
    Plugin Contributions
    0

    Default Re: logo has disappeared

    It is indeed ("images" is our username).

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

    Default Re: logo has disappeared

    I was referring to the double /www/www/
    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: v1.5.5]
    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!

  10. #10
    Join Date
    Feb 2006
    Posts
    70
    Plugin Contributions
    0

    Default Re: logo has disappeared

    Ah I see - the double www is correct.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. MyLiveChat has disappeared!!
    By bodkin77 in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 20 Jun 2013, 08:10 AM
  2. FCKeditor has disappeared !!!!
    By Alber in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 20 Mar 2011, 11:24 PM
  3. H1 Heading has disappeared
    By bear6970 in forum Basic Configuration
    Replies: 5
    Last Post: 19 Sep 2010, 04:45 PM
  4. My site has disappeared!!!!
    By Celestial Toymaker in forum General Questions
    Replies: 6
    Last Post: 12 Mar 2010, 10:06 PM
  5. My page has disappeared
    By vivaraquel in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 30 Nov 2007, 12:32 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