Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Sep 2008
    Posts
    210
    Plugin Contributions
    21

    Idea or Suggestion Wishlist 2.0 for ZC v1.5.x

    Hi,

    I have updated the wishlist. It works fine with version 1.5.x now.

    Download here http://zucando.com/zen-cart-modules/...zen-cart-1-5-x

    I have submitted to addon/plugin. Hope mods can enable it soon.

    If you have any problem when install it, please post here.

    Thanks

    Chu
    Our Site: http://zucando.com
    Marketing Plugins: Marketing Modules
    Free Response Templates: Responsive Templates

  2. #2
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    Running SQL, I get the following:

    SQL Error (1136) in statement #8: Column count doesn't match value count at row 1

  3. #3
    Join Date
    Sep 2008
    Posts
    210
    Plugin Contributions
    21

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    I have tried to run SQL and it works fine for me.
    Our Site: http://zucando.com
    Marketing Plugins: Marketing Modules
    Free Response Templates: Responsive Templates

  4. #4
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    Quote Originally Posted by cvhainb View Post
    I have tried to run SQL and it works fine for me.
    Great. Doesn't for me.

    Stepping through it now.

    Doesn't like anything here:




    INSERT INTO configuration VALUES (NULL, 'Wishlist Module Switch', 'UN_DB_MODULE_WISHLISTS_ENABLED', 'true', 'Set this option true or false to enable or disable the wishlist', @configuration_group_id, 710, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");
    INSERT INTO configuration VALUES (NULL, 'Wishlist sidebox header link', 'UN_DB_SIDEBOX_LINK_HEADER', 'true', 'Set this option true or false to make the sidebox header a link to the wishlist page.', @configuration_group_id, 711, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");
    INSERT INTO configuration VALUES (NULL, 'Wishlist allow multiple lists', 'UN_DB_ALLOW_MULTIPLE_WISHLISTS', 'true', 'Set this option true or false to allow for more than 1 wishlist', @configuration_group_id, 712, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");
    INSERT INTO configuration VALUES (NULL, 'Wishlist display category filter', 'UN_DB_DISPLAY_CATEGORY_FILTER', 'false', 'Set this option true or false to enable a category filter', @configuration_group_id, 713, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");
    INSERT INTO configuration VALUES (NULL, 'Wishlist default name', 'DEFAULT_WISHLIST_NAME', 'Default', 'Enter the name you want to be assigned to the initial wishlist.', @configuration_group_id, 714, now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Wishlist show list after product addition', 'DISPLAY_WISHLIST', 'false', 'Set this option true or false to show the wishlist after a product was added to the wishlist', @configuration_group_id, 715, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");
    INSERT INTO configuration VALUES (NULL, 'Wishlist display max items in extended view', 'UN_MAX_DISPLAY_EXTENDED', '10', 'Enter the maximum amount of products you want to show in extended view.<br />default = 10', @configuration_group_id, 716, now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Wishlist display max items in compact view', 'UN_MAX_DISPLAY_COMPACT', '20', 'Enter the maximum amount of products you want to show in extended view.<br />default = 20', @configuration_group_id, 717, now(), now(), NULL, NULL);
    INSERT INTO configuration VALUES (NULL, 'Wishlist default view Switch', 'UN_DEFAULT_LIST_VIEW', 'extended', 'Set the default view of the list to compact or extended view', @configuration_group_id, 718, now(), now(), NULL, "zen_cfg_select_option(array('compact', 'extended'),");
    INSERT INTO configuration VALUES (NULL, 'Wishlist allow multiple products to cart', 'UN_DB_ALLOW_MULTIPLE_PRODUCTS_CART_COMPACT', 'false', 'Set this option true or false to allow multiple products to be moved in the cart via checkboxes in compact view', @configuration_group_id, 719, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");

    # Register the configuration page for Admin Access Control
    INSERT IGNORE INTO admin_pages (page_key,language_key,main_page,page_params,menu_key,display_on_menu,sort_order ) VALUES ('configWishlist','BOX_CONFIGURATION_WISHLIST','FILENAME_CONFIGURATION',CONCAT(' gID=',@configuration_group_id),'configuration','Y',@configuration_group_id);

    # Register the extras page for Admin Access Control
    INSERT IGNORE INTO admin_pages (`page_key`, `language_key`, `main_page`, `page_params`, `menu_key`, `display_on_menu`, `sort_order`) VALUES ('extrasWishlist', 'UN_BOX_WISHLISTS', 'UN_FILENAME_WISHLISTS', '', 'extras', 'Y', @configuration_group_id);

  5. #5
    Join Date
    Sep 2008
    Posts
    210
    Plugin Contributions
    21

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    I dont know what happened for you but if you download the package on my site, it will work.
    Our Site: http://zucando.com
    Marketing Plugins: Marketing Modules
    Free Response Templates: Responsive Templates

  6. #6
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    I think the problem is that the script (tries) to insert 11 points of data, the table takes 12.

    INSERT INTO configuration VALUES (NULL, 'Wishlist sidebox header link', 'UN_DB_SIDEBOX_LINK_HEADER', 'true', 'Set this option true or false to make the sidebox header a link to the wishlist page.', @configuration_group_id, 711, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");

    CREATE TABLE dummy (
    `configuration_id` INT(11) NOT NULL AUTO_INCREMENT,
    `configuration_title` TEXT NOT NULL,
    `configuration_key` VARCHAR(255) NOT NULL DEFAULT '',
    `configuration_value` TEXT NOT NULL,
    `configuration_description` TEXT NOT NULL,
    `configuration_group_id` INT(11) NOT NULL DEFAULT '0',
    `sort_order` INT(5) NULL DEFAULT NULL,
    `last_modified` DATETIME NULL DEFAULT NULL,
    `date_added` DATETIME NOT NULL DEFAULT '0001-01-01 00:00:00',
    `use_function` TEXT NULL,
    `set_function` TEXT NULL,
    `configuration_tab` VARCHAR(32) NOT NULL DEFAULT 'General'
    )


    My twelfth field is the configuration_tab and most are set to 'General'.

  7. #7
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    Quote Originally Posted by cvhainb View Post
    I dont know what happened for you but if you download the package on my site, it will work.
    Thats where i pulled it from.

  8. #8
    Join Date
    Sep 2008
    Posts
    210
    Plugin Contributions
    21

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    Yes, I think you will have to add a value for configuration_tab at end of each row because this SQL need it.

    Quote Originally Posted by Limitless View Post
    I think the problem is that the script (tries) to insert 11 points of data, the table takes 12.

    INSERT INTO configuration VALUES (NULL, 'Wishlist sidebox header link', 'UN_DB_SIDEBOX_LINK_HEADER', 'true', 'Set this option true or false to make the sidebox header a link to the wishlist page.', @configuration_group_id, 711, now(), now(), NULL, "zen_cfg_select_option(array('true', 'false'),");

    CREATE TABLE dummy (
    `configuration_id` INT(11) NOT NULL AUTO_INCREMENT,
    `configuration_title` TEXT NOT NULL,
    `configuration_key` VARCHAR(255) NOT NULL DEFAULT '',
    `configuration_value` TEXT NOT NULL,
    `configuration_description` TEXT NOT NULL,
    `configuration_group_id` INT(11) NOT NULL DEFAULT '0',
    `sort_order` INT(5) NULL DEFAULT NULL,
    `last_modified` DATETIME NULL DEFAULT NULL,
    `date_added` DATETIME NOT NULL DEFAULT '0001-01-01 00:00:00',
    `use_function` TEXT NULL,
    `set_function` TEXT NULL,
    `configuration_tab` VARCHAR(32) NOT NULL DEFAULT 'General'
    )


    My twelfth field is the configuration_tab and most are set to 'General'.
    Our Site: http://zucando.com
    Marketing Plugins: Marketing Modules
    Free Response Templates: Responsive Templates

  9. #9
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    After manually inserting the above SQL statements, I am getting

    Parse error: syntax error, unexpected '"' in /home/shtf-gear/htdocs/adminXXXXXXXXXXXXXXXXXX/configuration.php(179) : eval()'d code on line 1



    Also, not see anything that can actually be configured in the admin pages.

    Missing the true/false options.



    Name:  wishlist.jpg
Views: 911
Size:  8.3 KB

  10. #10
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: Wishlist 2.0 for zen cart 1.5.x

    SQL Uninstall does not work either.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Looking for Wishlist and RMA addons for 1.5
    By RSprinkel in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 1 May 2013, 12:19 AM
  2. v151 WishList 0.9, Update for v1.5.1 ?
    By LuneKeltkar in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 31 Mar 2013, 11:51 PM
  3. Wishlist for 1.3.5 - Yes or No?
    By Joelle in forum All Other Contributions/Addons
    Replies: 29
    Last Post: 21 Mar 2007, 02:36 AM
  4. Button for wishlist mod
    By ctcentralinfo in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 Sep 2006, 03:29 PM

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