Results 1 to 10 of 35

Hybrid View

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

    Default Re: Specials Sidebox showing on home page only

    Is this on the site in your signature?

    If so, your URL is being built wrong and with that is the SEO stuff you are using or your configure.php file ...

    View Source and you will see there are things built for the page ...

    Turn off the SEO stuff, does this correct the problem?
    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!

  2. #2
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Specials Sidebox showing on home page only

    Quote Originally Posted by Ajeh View Post
    Is this on the site in your signature?

    If so, your URL is being built wrong and with that is the SEO stuff you are using or your configure.php file ...

    View Source and you will see there are things built for the page ...

    Turn off the SEO stuff, does this correct the problem?
    I turned off SEO and still does not work...

    What do you mean by... is this on the site in your signature?

    Kim

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

    Default Re: Specials Sidebox showing on home page only

    I wanted to confirm that the site you are trying to fix is the site in your signature ...

    You have a problem with your URLs and have the double slashes in them ...

    Fixing these could resolve a number of problems ...

    Check your files:
    /includes/configure.php
    /admin/includes/configure.php

    and see if you have extra slashes in them causing this problem ...
    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!

  4. #4
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Specials Sidebox showing on home page only

    Quote Originally Posted by Ajeh View Post
    I wanted to confirm that the site you are trying to fix is the site in your signature ...

    You have a problem with your URLs and have the double slashes in them ...

    Fixing these could resolve a number of problems ...

    Check your files:
    /includes/configure.php
    /admin/includes/configure.php

    and see if you have extra slashes in them causing this problem ...
    I see // in both files. So, I should take the //away from line like this one..... define('HTTP_SERVER', 'http://www.burnerbooks.com');

    It should look like.... define('HTTP_SERVER', 'http:/www.burnerbooks.com');

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

    Default Re: Specials Sidebox showing on home page only

    No, that is part of the URL ... just like any website ...

    If you could post, from the server, without your username and password, your file:
    /includes/configure.php
    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 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: Specials Sidebox showing on home page only

    Quote Originally Posted by Ajeh View Post
    No, that is part of the URL ... just like any website ...

    If you could post, from the server, without your username and password, your file:
    /includes/configure.php
    here is the /includes/configure.php file

    HTML Code:
    // 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', '//');
      define('DIR_WS_HTTPS_CATALOG', '//');
    
      define('DIR_WS_IMAGES', 'images/');
      define('DIR_WS_INCLUDES', 'includes/');
      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_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/no name/public_html//');
    
      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', '');
      define('DB_SERVER', 'localhost');
      define('DB_SERVER_USERNAME', 'no name');
      define('DB_SERVER_PASSWORD', 'no name');
      define('DB_DATABASE', 'no name');
      define('USE_PCONNECT', 'false');
      define('STORE_SESSIONS', 'db');
      // for STORE_SESSIONS, use 'db' for best support, or '' for file-based storage
    
      // 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', 'none'); 
      define('DIR_FS_SQL_CACHE', '/home/no name/public_html//cache');
    
    // EOF
    I replaced passwords and usernames, etc with no name. I also did not load first part of file with url names.

    Thanks.

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

    Default Re: Specials Sidebox showing on home page only

    These are wrong:
    define('DIR_WS_CATALOG', '//');
    define('DIR_WS_HTTPS_CATALOG', '//');
    Should be:
    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');
    This is wrong:
    define('DIR_FS_CATALOG', '/home/no name/public_html//');
    Should be:
    define('DIR_FS_CATALOG', '/home/no name/public_html/');
    This is wrong:
    define('DIR_FS_SQL_CACHE', '/home/no name/public_html//cache');
    Should be:
    define('DIR_FS_SQL_CACHE', '/home/no name/public_html/cache');
    I don't know what you have on the server URLs as you did not post them, but those are the ones that I see that are bad and causing issues ...
    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. "Specials" sidebox showing only for certain categories?
    By kcb410 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 9 Sep 2012, 01:25 AM
  2. Twitter sidebox only on home page
    By krazey in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 11 Dec 2010, 09:04 PM
  3. Index Page Only Showing Specials
    By leevil123 in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 11 Feb 2010, 08:00 AM
  4. home page only sidebox
    By Minnie Mouse in forum Templates, Stylesheets, Page Layout
    Replies: 27
    Last Post: 12 Oct 2009, 12:38 PM
  5. Specials sidebox not showing at Specials page
    By JuanDBB in forum Basic Configuration
    Replies: 2
    Last Post: 15 Mar 2009, 04:59 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