Results 1 to 8 of 8
  1. #1
    Join Date
    May 2008
    Posts
    203
    Plugin Contributions
    0

    Default Quick question about fresh install of 1.5.1 with database import from 1.3

    I have my livesite on 1.3 currently: http://nonelectronics.com/catalog/

    1.5.1 is up and running (for the most part) at http://nonelectronics.com/zendemo

    EDIT: The template is imported from my 1.3 build as well. The entire templates folder and html_includes (all the define pages) was ported over.

    My question: Why isn't my sidebar showing up on the left? Everything looks ok in the back end, and it would seem all of the css is still there. Not really sure what I'm missing.
    Last edited by nonfinite; 27 Nov 2012 at 09:40 PM. Reason: see post

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Quick question about fresh install of 1.5.1 with database import from 1.3

    When you activated the template did you access
    admin > tools > layout boxes controller
    Zen-Venom Get Bitten

  3. #3
    Join Date
    May 2008
    Posts
    203
    Plugin Contributions
    0

    Default Re: Quick question about fresh install of 1.5.1 with database import from 1.3

    Yes. I have 5 enabled boxes and set in order from 0-4 on LEFT.

    I have layout set to LEFT - 1 RIGHT - 1 sizes 165px and 150px (2x each, as both columns have 3 settings in that page).

    I also had it running with RIGHT set to 0 and 0px 0px.

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Quick question about fresh install of 1.5.1 with database import from 1.3

    From your demo site source view
    Code:
    <div id="navColumnOne" class="columnLeft" style="width: 165px"> 
    
    <div id="navColumnOneWrapper" style="width: 165px"> 
    <td id="navColumnOne" class="columnLeft" style="width: 165px">
    
    </div>
    Versus your main site source view
    Code:
    <td id="navColumnOne" class="columnLeft" style="width: 130px">
    
    <div  id="navColumnOneWrapper" style="width: 150px"><!--// bof: categories //-->
    
    <div style="margin-left:10px; margin-bottom:10px;" id="categories" style="width: 150px">
    <h3 class="leftBoxHeading" id="categoriesHeading">Categories</h3>
    <div id="categoriesContent" class="sideBoxContent">
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=8&amp;zenid=6408jivmai0g6urpejfgq7p3j4">Accessories</a>&nbsp;(9)<br />
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=2&amp;zenid=6408jivmai0g6urpejfgq7p3j4">Cartridges</a>&nbsp;(4)<br />
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=14&amp;zenid=6408jivmai0g6urpejfgq7p3j4">Custom Cases</a>&nbsp;(3)<br />
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=10&amp;zenid=6408jivmai0g6urpejfgq7p3j4">D.I.Y. Products</a>&nbsp;(23)<br />
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=1&amp;zenid=6408jivmai0g6urpejfgq7p3j4">Game Boy</a>&nbsp;(2)<br />
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=3&amp;zenid=6408jivmai0g6urpejfgq7p3j4">Modification</a>&nbsp;(1)<br />
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=13&amp;zenid=6408jivmai0g6urpejfgq7p3j4">Music</a>&nbsp;(1)<br />
    <a class="category-top" href="http://www.nonelectronics.com/catalog/index.php?main_page=index&amp;cPath=11&amp;zenid=6408jivmai0g6urpejfgq7p3j4">Trade-In's</a>&nbsp;(1)<br />
    <hr id="catBoxDivider" />
    <a class="category-links" href="http://www.nonelectronics.com/catalog/index.php?main_page=products_all&amp;zenid=6408jivmai0g6urpejfgq7p3j4">All Products ...</a>
    </div></div>
    Recheck that you are looking at your demo's admin
    Zen-Venom Get Bitten

  5. #5
    Join Date
    May 2008
    Posts
    203
    Plugin Contributions
    0

    Default Re: Quick question about fresh install of 1.5.1 with database import from 1.3

    Verified, I'm in the demo backend.

    The CSS for the column is as follows:

    <td id="navColumnOne" class="columnLeft" style="width: 165px">

    </td>

    Looks like the css is there, it's just...devoid of content.

  6. #6
    Join Date
    May 2008
    Posts
    203
    Plugin Contributions
    0

    Default Re: Quick question about fresh install of 1.5.1 with database import from 1.3

    Did some more digging. 1.3 livesite has css for #NavColumnOneWrapper in inspector. Searched for that...

    Code:
    /home1/nonfinit/public_html/zendemo/includes/templates/barebones/common/tpl_main_page.php
    
    Line #102 : <div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>"> 
     
    /home1/nonfinit/public_html/zendemo/includes/templates/cherry_zen/common/tpl_main_page.php
    
    Line #132 : <div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>"> 
     
    /home1/nonfinit/public_html/zendemo/includes/templates/template_default/common/tpl_main_page.php
    
    Line #91 : <div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?></div></td>

    The sidebar works on the cherry_zen and default templates



    I then searched for bof: categories in the livesite and demosite separately.

    demo
    Code:
    /home1/nonfinit/public_html/zendemo/includes/templates/barebones/templates/tpl_index_product_list.php
    
    Line #92 : //// bof: categories error 
    
    Line #150 : //// bof: categories

    live
    Code:
    /home/nonfinit/public_html/catalog/includes/templates/barebones/templates/tpl_index_product_list.php
    
    Line #92 : //// bof: categories error 
    
    Line #150 : //// bof: categories
    Last edited by nonfinite; 27 Nov 2012 at 10:46 PM.

  7. #7
    Join Date
    May 2008
    Posts
    203
    Plugin Contributions
    0

    Default Re: Quick question about fresh install of 1.5.1 with database import from 1.3

    all of

    Code:
    <div style="margin-left:10px; margin-bottom:10px;" id="categories" style="width: 150px">
    <h3 class="leftBoxHeading" id="categoriesHeading">Categories</h3>
    <div id="categoriesContent" class="sideBoxContent">
    <a class="category-top" href="http://www.nonelectron...
    Seems to come from barebones/common/tpl_box_default_left.php

    This file is present in the directories for both the livesite and demosite.

  8. #8
    Join Date
    May 2008
    Posts
    203
    Plugin Contributions
    0

    Default Re: Quick question about fresh install of 1.5.1 with database import from 1.3

    Got it!

    updated tpl_main_page.php in my template's common folder with the following from the default template:

    Code:
     <td id="navColumnOne" class="columnLeft" style="width: <?php echo COLUMN_WIDTH_LEFT; ?>">
    <?php
     /**
      * prepares and displays left column sideboxes
      *
      */
    ?>
    <div id="navColumnOneWrapper" style="width: <?php echo BOX_WIDTH_LEFT; ?>"><?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?></div></td>
    lines 85-93 (for future googlers)


    Can someone remove the urls now that the issue is resolved, please?

 

 

Similar Threads

  1. Fresh install of 1.5 using database from 1.3.8
    By plsony in forum Installing on a Linux/Unix Server
    Replies: 3
    Last Post: 22 Jun 2012, 06:59 PM
  2. Replies: 4
    Last Post: 13 Nov 2010, 02:45 AM
  3. Wanting to do a fresh install - with SOME of my old database
    By ArtsygalDotNet in forum General Questions
    Replies: 2
    Last Post: 9 Apr 2010, 01:18 PM
  4. fresh install v138a - what do I do with database?
    By Kruna in forum Upgrading from 1.3.x to 1.3.9
    Replies: 0
    Last Post: 19 Jan 2008, 01:39 AM
  5. Fresh install of 1.3.0.2 on a new host server - problem with database
    By henrygoh in forum Installing on a Linux/Unix Server
    Replies: 3
    Last Post: 14 Jul 2006, 09:23 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