Page 18 of 71 FirstFirst ... 816171819202868 ... LastLast
Results 171 to 180 of 703
  1. #171
    Join Date
    Feb 2008
    Location
    West Virginia
    Posts
    137
    Plugin Contributions
    0

    Default Re: Just another Cross-Sell mod (support thread)

    Nevermind, all is well now. I had modified the sytlesheet and messed something up. I have it fixed now.

    Thanks again for the great mod.
    Zen Cart: 1.3.8a
    PHP: 5.2.4
    MySQL: 5.0.45

    Pine Tree Candles

  2. #172
    Join Date
    May 2006
    Posts
    26
    Plugin Contributions
    0

    Default Re: Just another Cross-Sell mod (support thread)

    I have installed the Original Cross Sell and it works properly. However, when i try to install JAXSell i get the following error when installing the SQL patch (see below). Does anyone recognize this problem? Solution?
    Thanks in advance!

    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4
    FROM configuration_group
    WHERE configuration_group_title= 'Cross Sell';
    DELETE FROM configuration WHERE configuration_group_id = @t4;
    DELETE FROM configuration_group WHERE configuration_group_id = @t4;

    INSERT INTO configuration_group VALUES ('', 'Cross Sell', 'Set Cross Sell Options', '1', '1');
    UPDATE configuration_group SET sort_order = last_insert_id() WHERE configuration_group_id = last_insert_id();

    SET @t4=0;
    SELECT (@t4:=configuration_group_id) as t4
    FROM configuration_group
    WHERE configuration_group_title= 'Cross Sell';


    UPDATE configuration SET configuration_group_id = @t4 WHERE configuration_key IN ('MIN_DISPLAY_XSELL','MAX_DISPLAY_XSELL','SHOW_PRODUCT_INFO_COLUMNS_XSELL_PRODUC TS','XSELL_DISPLAY_PRICE');

    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES
    ('', 'Input type to be used in form', 'XSELL_FORM_INPUT_TYPE', 'model', 'Choose to use product ID or MODEL as your input type. Check readme file for more info', @t4, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(\'id\', \'model\'),');

    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES
    ('', 'XSell Product Input Separator', 'XSELL_PRODUCT_INPUT_SEPARATOR', ',', 'You will need to insert all product id/model you want to cross-sell in 1 field, so each product id/model needs to be separated by a separator. The default is comma, choose another if you want to', @t4, 1, NOW(), NOW(), NULL, NULL);

    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES
    ('', 'XSell Sort Order', 'XSELL_SORT_ORDER', 'default', 'Sometimes you may want to display the xsell products randomly, especially if each product xsells with lots of others', @t4, 1, NOW(), NOW(), NULL, 'zen_cfg_select_option(array(\'defalt\', \'model\')');
    12 statements processed.
    ERROR: Cannot insert configuration_key "" because it already exists
    ERROR: Cannot insert configuration_key "" because it already exists
    ERROR: Cannot insert configuration_key "" because it already exists
    Note: 3 statements ignored. See "upgrade_exceptions" table for additional details.

  3. #173
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Just another Cross-Sell mod (support thread)

    First, there is a new version uploaded with minor bug fixes. Second: I have no idea why you have those errors, since the configuration_key are there, but the error reports seem to say they are empty.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  4. #174
    Join Date
    May 2006
    Posts
    26
    Plugin Contributions
    0

    Default Re: Just another Cross-Sell mod (support thread)

    I know, it's really strange! I have no problem to run the sql patch to the original cross sell and i have tried several time with the same result.
    I don't think anything was changed in the sql-file in the last release? However i got the same result.
    No one with the same problem as i have?

  5. #175
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Just another Cross-Sell mod (support thread)

    If you use table prefix in the db, attach the prefix into the table names, then run the sql thru phpmyadmin to see if it makes any different.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  6. #176
    Join Date
    Nov 2003
    Posts
    1,987
    Plugin Contributions
    15

    Default Re: Just another Cross-Sell mod (support thread)

    Quote Originally Posted by gustafr View Post
    ERROR: Cannot insert configuration_key "" because it already exists
    This is a known sqlpatch.php issue, and it is *very* likely that you have an empty configuration_key in your configuration table.

    An easy way around the issue is to remove the empty key:
    Code:
    DELETE FROM configuration WHERE configuration_key = "";
    And after that you should be able to apply the sql patch without any errors.

    (using phpMyAdmin as suggested by yellow will help too, an advantage of the above fix however is that it will fix issues you will otherwise have with lots of other sql patches as well)
    Last edited by paulm; 6 Mar 2008 at 10:40 AM.

  7. #177
    Join Date
    Jun 2007
    Location
    Earth
    Posts
    13
    Plugin Contributions
    0

    Default Re: Just another Cross-Sell mod (support thread)

    I've got both Cross Sell and JAX installed and running. Everything shows nicely in the public side, gets added to the db, both one way and both way xsells. Works really nice.

    One problem tho. For some reason I'm not getting my list of xsells under the "List all Cross-sells" header. I'm using the current version located on your site. Any suggestions on fixing this would be great. If I figure it out, I'll post it here in case someone else comes across this.
    Chinchilla2661

  8. #178
    Join Date
    May 2006
    Posts
    26
    Plugin Contributions
    0

    customer issue Re: Just another Cross-Sell mod (support thread)

    Thank you Paulm, your fix solved my problem. Now it works perfectly.
    Best Regards
    Gustaf

  9. #179
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Just another Cross-Sell mod (support thread)

    Quote Originally Posted by Chinchilla2661 View Post
    I've got both Cross Sell and JAX installed and running. Everything shows nicely in the public side, gets added to the db, both one way and both way xsells. Works really nice.

    One problem tho. For some reason I'm not getting my list of xsells under the "List all Cross-sells" header. I'm using the current version located on your site. Any suggestions on fixing this would be great. If I figure it out, I'll post it here in case someone else comes across this.
    You dont get the whole list, or you get part of the list? Your mysql version is?
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  10. #180
    Join Date
    Jun 2007
    Location
    Earth
    Posts
    13
    Plugin Contributions
    0

    Default Re: Just another Cross-Sell mod (support thread)

    It's completely blank under the "List All Cross-Sells" section. They appear in the public side (catalog side), but not in the admin side. If I head back to the original Cross-Sell admin panel, scroll the list they appear there. They also appear in the db.

    Server information:
    Development server on localhost:
    Database: MySQL 5.0.41-community-nt
    HTTP Server: Apache/2.0.59 (Win32) PHP/5.2.2
    PHP Version: 5.2.2 (Zend: 2.2.0)

    I have attached ss's of the two different pages.

    If it wasn't for being on the localhost, I'd send you a link so you could see yourself.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	xsell_original.jpg 
Views:	210 
Size:	21.1 KB 
ID:	3526   Click image for larger version. 

Name:	xsell_jax.jpg 
Views:	203 
Size:	7.8 KB 
ID:	3527  
    Chinchilla2661

 

 
Page 18 of 71 FirstFirst ... 816171819202868 ... LastLast

Similar Threads

  1. Cross Sell Advanced [Support Thread]
    By DivaVocals in forum Addon Admin Tools
    Replies: 162
    Last Post: 28 Jan 2025, 01:37 PM
  2. Multi Cross Sell mod [Support thread]
    By gilby in forum All Other Contributions/Addons
    Replies: 475
    Last Post: 11 Apr 2020, 10:44 PM
  3. Trying to fully uninstall Cross Sell Just Another Mod
    By 1105designs in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 18 Oct 2011, 04:03 AM
  4. Fatal Error After installing Cross Sell - Just Another Cross Sell Mod
    By kconklin in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 9 Jul 2010, 02:38 PM
  5. "cross sell - just another cross sell mod"
    By australican in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 28 Apr 2010, 05:17 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