Results 1 to 5 of 5
  1. #1
    Join Date
    Jul 2007
    Posts
    24
    Plugin Contributions
    0

    Default Cross Sell module installation problem - help!

    Hi,

    I've been trying to install the latest version of cross sell module. Understand that I need to install the original version first, but when I hit the "upload" button under "Install SQL patches" this comes up and I suppose this means it is not et installed?? Pls help....Many many many thanks!:

    ## Cross Sell v1.3.0
    #
    ## The following is used to install the Cross-Sell Products mapping table and the admin switches for display control in the catalog.
    ## This script should be able to be run from Admin->Tools->Install SQL Patches
    #

    #DROP TABLE IF EXISTS products_xsell;
    CREATE TABLE products_xsell (
    ID int(10) NOT NULL auto_increment,
    products_id int(10) unsigned NOT NULL default 1,
    xsell_id int(10) unsigned NOT NULL default 1,
    sort_order int(10) unsigned NOT NULL default 1,
    PRIMARY KEY (ID),
    KEY idx_products_id_xsell (products_id)
    ) TYPE=MyISAM;


    ## add switches for: MIN_DISPLAY_XSELL, MAX_DISPLAY_XSELL
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Display Cross-Sell Products', 'MIN_DISPLAY_XSELL', 1, 'This is the minimum number of configured Cross-Sell products required in order to cause the Cross Sell information to be displayed.
    Default: 1', 2, 17, now());
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Display Cross-Sell Products', 'MAX_DISPLAY_XSELL', 6, 'This is the maximum number of configured Cross-Sell products to be displayed.
    Default: 6', 3, 66, now());
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Cross-Sell Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_XSELL_PRODUCTS', '3', 'Cross-Sell Products Columns to display per Row
    0= off or set the sort order.
    Default: 3', 18, 72, 'zen_cfg_select_option(array(0, 1, 2, 3, 4), ', now());
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Cross-Sell - Display prices?', 'XSELL_DISPLAY_PRICE', 'false', 'Cross-Sell -- Do you want to display the product prices too?
    Default: false', 18, 72, 'zen_cfg_select_option(array('true','false'), ', now());
    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'true','false'), ', now())' at line 1
    in:
    [INSERT INTO zen_configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Cross-Sell - Display prices?', 'XSELL_DISPLAY_PRICE', 'false', 'Cross-Sell -- Do you want to display the product prices too?
    Default: false', 18, 72, 'zen_cfg_select_option(array('true','false'), ', now());]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cross Sell module installation problem - help!

    Quote Originally Posted by dazed88 View Post
    Hi,

    I've been trying to install the latest version of cross sell module. Understand that I need to install the original version first, but when I hit the "upload" button under "Install SQL patches" this comes up and I suppose this means it is not et installed?? Pls help....Many many many thanks!:

    ## Cross Sell v1.3.0
    #
    ## The following is used to install the Cross-Sell Products mapping table and the admin switches for display control in the catalog.
    ## This script should be able to be run from Admin->Tools->Install SQL Patches
    #

    #DROP TABLE IF EXISTS products_xsell;
    CREATE TABLE products_xsell (
    ID int(10) NOT NULL auto_increment,
    products_id int(10) unsigned NOT NULL default 1,
    xsell_id int(10) unsigned NOT NULL default 1,
    sort_order int(10) unsigned NOT NULL default 1,
    PRIMARY KEY (ID),
    KEY idx_products_id_xsell (products_id)
    ) TYPE=MyISAM;


    ## add switches for: MIN_DISPLAY_XSELL, MAX_DISPLAY_XSELL
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Display Cross-Sell Products', 'MIN_DISPLAY_XSELL', 1, 'This is the minimum number of configured Cross-Sell products required in order to cause the Cross Sell information to be displayed.
    Default: 1', 2, 17, now());
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Display Cross-Sell Products', 'MAX_DISPLAY_XSELL', 6, 'This is the maximum number of configured Cross-Sell products to be displayed.
    Default: 6', 3, 66, now());
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Cross-Sell Products Columns per Row', 'SHOW_PRODUCT_INFO_COLUMNS_XSELL_PRODUCTS', '3', 'Cross-Sell Products Columns to display per Row
    0= off or set the sort order.
    Default: 3', 18, 72, 'zen_cfg_select_option(array(0, 1, 2, 3, 4), ', now());
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Cross-Sell - Display prices?', 'XSELL_DISPLAY_PRICE', 'false', 'Cross-Sell -- Do you want to display the product prices too?
    Default: false', 18, 72, 'zen_cfg_select_option(array('true','false'), ', now());
    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'true','false'), ', now())' at line 1
    in:
    [INSERT INTO zen_configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Cross-Sell - Display prices?', 'XSELL_DISPLAY_PRICE', 'false', 'Cross-Sell -- Do you want to display the product prices too?
    Default: false', 18, 72, 'zen_cfg_select_option(array('true','false'), ', now());]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
    You might want to check the support forum for this MOD

  3. #3
    Join Date
    Jul 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Cross Sell module installation problem - help!

    thanks clyde.

    I actually saw this post...but i think my problem is not being even to install the mod using the tools>install sql patch. When I click on that, browse to the sql fileand upload it, the message in my 1st post appeared.

    That's where I'm stuck at. I'm not familiar with l, but it looks pretty straightforward using the sql patch link in the admin.....

    is there something that i overlooked?

    thanks!

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cross Sell module installation problem - help!

    Quote Originally Posted by dazed88 View Post
    thanks clyde.

    I actually saw this post...but i think my problem is not being even to install the mod using the tools>install sql patch. When I click on that, browse to the sql fileand upload it, the message in my 1st post appeared.

    That's where I'm stuck at. I'm not familiar with l, but it looks pretty straightforward using the sql patch link in the admin.....

    is there something that i overlooked?

    thanks!
    Don't use the browse/upload button.

    copy and past the sql into the text area and click the send button.

  5. #5
    Join Date
    Jul 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: Cross Sell module installation problem - help!

    hi clyde,

    thanks! worked beautifully.

    Now there is just a wee problem, the module works great in admin, but nothing shows up on the storefront, though the linking has been done.

    Went through the posts, a few had the same problem, but no solution was posted...or at least, I didn't see it...

    many thanks!!!

 

 

Similar Threads

  1. Cross Sell Module Layout Problem When Only 2 Items
    By acreativepage in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 23 Sep 2010, 10:45 PM
  2. Cross Sell Installation Problem
    By ttmb33 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 15 Jan 2010, 09:42 PM
  3. Cross Sell Module installation problem
    By Pisanmc in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 17 Jan 2008, 01:29 AM
  4. Cross Sell Confusing Installation Manual
    By arretx in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 14 Sep 2007, 02:42 PM
  5. Need help of Cross Sell module
    By joshuayang in forum General Questions
    Replies: 5
    Last Post: 29 Oct 2006, 07:06 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