Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 34
  1. #11
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Trouble with Layout Boxes Controller

    Is `show_box_min_width` tinyint(1) NOT NULL DEFAULT '1' applicable to v155 or 160?
    That was added in earlier versions of the DIY responsive components.

    It was not ported to v1.5.5
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  2. #12
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Trouble with Layout Boxes Controller

    Ok. I can edit individual side boxes. Thank you.

    Ability to add to cart is gone.

    Do I need to run the new zc installer?
    Cheers!
    v2.0+

  3. #13
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Trouble with Layout Boxes Controller

    Still, I cannot add to or edit cart again. No debugs in the logs folder.

    Any advice?
    Cheers!
    v2.0+

  4. #14
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Trouble with Layout Boxes Controller

    webskipper, can you put a fresh new unaltered v155 install (with demo data) into a subdirectory for us to compare against your live site?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  5. #15
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Trouble with Layout Boxes Controller

    I moved the top to the 155 Responsive feedback topic.
    Cheers!
    v2.0+

  6. #16
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Trouble with Layout Boxes Controller

    Oy, I don't see how this is specific to the 155 Responsive Classic template
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #17
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Trouble with Layout Boxes Controller

    deleted
    Cheers!
    v2.0+

  8. #18
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Trouble with Layout Boxes Controller

    Quote Originally Posted by DrByte View Post
    Oy, I don't see how this is specific to the 155 Responsive Classic template
    Me, too.

    When I switch to the Classic Money green template I can turn off/on any side box.

    When I switch back to the Classic Responsive template I cannot turn off/on any side box.

    I am forced to use RESET and walk away.

    This is disappointing. Please advise.
    Cheers!
    v2.0+

  9. #19
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Trouble with Layout Boxes Controller

    Quote Originally Posted by webskipper View Post
    Me, too.

    When I switch to the Classic Money green template I can turn off/on any side box.

    When I switch back to the Classic Responsive template I cannot turn off/on any side box.

    I am forced to use RESET and walk away.

    This is disappointing. Please advise.
    Um, we talked about this already. The auto increment on the layout_boxes table. ... you'll need to first delete all the entries with layout_box_id = 0, and then set that field to be autoincrement. Then you can do a reset to recreate all the zeros just deleted, and it should let you save changes again.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #20
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Trouble with Layout Boxes Controller

    I misunderstood you the first time, Doc.

    So, what you are saying is reset all int(#) to zero? For all tables as well? Right column boxes do not show.

    DROP TABLE IF EXISTS `layout_boxes`;
    /*!40101 SET @saved_cs_client = @@character_set_client */;
    /*!40101 SET character_set_client = utf8 */;
    CREATE TABLE `layout_boxes` (
    `layout_id` int(0) NOT NULL AUTO_INCREMENT,
    `layout_template` varchar(64) NOT NULL DEFAULT '',
    `layout_box_name` varchar(64) NOT NULL DEFAULT '',
    `layout_box_status` tinyint(0) NOT NULL DEFAULT '0',
    `layout_box_location` tinyint(0) NOT NULL DEFAULT '0',
    `layout_box_sort_order` int(0) NOT NULL DEFAULT '0',
    `layout_box_sort_order_single` int(0) NOT NULL DEFAULT '0',
    `layout_box_status_single` tinyint(0) NOT NULL DEFAULT '0',
    PRIMARY KEY (`layout_id`),
    KEY `idx_name_template_zen` (`layout_template`,`layout_box_name`),
    KEY `idx_layout_box_status_zen` (`layout_box_status`),
    KEY `idx_layout_box_sort_order_zen` (`layout_box_sort_order`)
    ) ENGINE=MyISAM AUTO_INCREMENT=99 DEFAULT CHARSET=utf8;
    /*!40101 SET character_set_client = @saved_cs_client */;

    Do you also want ENGINE=MyISAM AUTO_INCREMENT=117 DEFAULT CHARSET=utf8; to be?

    ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;

    I think I found an error on my end because downloading the backup copy of the DB does not show the changes I make i.e adding auto_increment. I delete all the lines above the first instance of DROP TABLE IF EXISTS `address_book` and also below the last instance of UNLOCK TABLES. Copy pasted file directly into admin sql, correct?
    Last edited by Webskipper; 26 Mar 2016 at 08:09 PM.
    Cheers!
    v2.0+

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. v154 layout boxes controller
    By cj.dekrijger in forum Customization from the Admin
    Replies: 2
    Last Post: 14 Jun 2016, 08:42 AM
  2. v155 Trouble with Layout Boxes Controller
    By DrByte in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 22 Mar 2016, 01:51 AM
  3. Layout Boxes Controller
    By NBordeau in forum General Questions
    Replies: 5
    Last Post: 11 May 2010, 02:50 AM
  4. Layout Boxes Controller
    By wotnow in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 17 Feb 2010, 10:50 PM
  5. Alignment/layout issue when using Layout Boxes Controller
    By nicknight in forum General Questions
    Replies: 0
    Last Post: 25 Oct 2008, 02:04 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