Page 28 of 32 FirstFirst ... 182627282930 ... LastLast
Results 271 to 280 of 312
  1. #271
    Join Date
    Dec 2010
    Location
    Belgrade
    Posts
    15
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Hi!

    I have installed wish list from readme.txt file, but still I have this error:

    1146 Table 'internet_co_rs.un_wishlists' doesn't exist
    in:
    [SELECT id FROM un_wishlists w WHERE w.customers_id=1 and w.default_status=1 ]

    What is going on????!!!

  2. #272
    Join Date
    Jun 2009
    Location
    Orange County, California
    Posts
    544
    Plugin Contributions
    18

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    manojlo,

    did you run the un_wishlist.sql file in your admin area?

    Also, if you have a prefix on your tables, you'll need to follow instructions as noted in the readme file.


    -----[ 1. Create tables ]-----

    Run 'un_wishlist.sql' in the Install SQL patches in the Zen Cart admin.

    Important: If in your implementation of ZenCart you defined a database table prefix (see file "includes/configure.php", line 52), add that prefix to the table names in the sql file before running in the admin. ("un_wishlist.sql", lines 9, 10, 28 and 29).

  3. #273
    Join Date
    Jun 2009
    Location
    Orange County, California
    Posts
    544
    Plugin Contributions
    18

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    shakes,

    you can try copying and pasting the code from the un_wishlist_move page into the un_wishlist_default page. It's a long shot, but see if it works?

    If not, you'll want to hire a developer to customize the module for you. Try posting in the "commercial help wanted" section on this forum.

  4. #274
    Join Date
    Dec 2010
    Location
    Belgrade
    Posts
    15
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Quote Originally Posted by jackie.taferner View Post
    manojlo,

    did you run the un_wishlist.sql file in your admin area?

    Also, if you have a prefix on your tables, you'll need to follow instructions as noted in the readme file.


    -----[ 1. Create tables ]-----

    Run 'un_wishlist.sql' in the Install SQL patches in the Zen Cart admin.

    Important: If in your implementation of ZenCart you defined a database table prefix (see file "includes/configure.php", line 52), add that prefix to the table names in the sql file before running in the admin. ("un_wishlist.sql", lines 9, 10, 28 and 29).
    Yeah, I did that...
    I have added database prefix in those lines of code and - nothing... I have Wish list in my Admin backend, but when I click on it - it crashes! Also, I have sidebox wish list in front end - same thing.....

  5. #275
    Join Date
    Jun 2009
    Location
    Orange County, California
    Posts
    544
    Plugin Contributions
    18

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    manojlo,

    Can you post the SQL so i can review? Also, what version of Zen Cart are you running - and is it highly customized?

  6. #276
    Join Date
    Dec 2010
    Location
    Belgrade
    Posts
    15
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Here is SQL:
    PHP Code:
    # WishList v0.4 SQL Load for MySQL databases


    # --------------------------------------------------------
    #
    # Table structure for table un_wishlists
    #

    DROP TABLE IF EXISTS `un_wishlists`;
    CREATE TABLE `un_wishlists` (
      `
    idint(11NOT NULL auto_increment,
      `
    customers_idint(11NOT NULL default '0',
      `
    createddatetime NOT NULL default '0000-00-00 00:00:00',
      `
    modifieddatetime NOT NULL default '0000-00-00 00:00:00',
      `
    namevarchar(255) default NULL,
      `
    commentvarchar(255) default NULL,
      `
    default_statustinyint(1NOT NULL default '0',
      `
    public_statustinyint(1NOT NULL default '1',
      
    PRIMARY KEY  (`id`)
    TYPE=MyISAM;


    # --------------------------------------------------------
    #
    # Table structure for table un_products_to_wishlists
    #

    DROP TABLE IF EXISTS `un_products_to_wishlists`;
    CREATE TABLE `un_products_to_wishlists` (
      `
    products_idint(11NOT NULL default '0',
      `
    un_wishlists_idint(11NOT NULL default '0',
      `
    createddatetime NOT NULL default '0000-00-00 00:00:00',
      `
    modifieddatetime NOT NULL default '0000-00-00 00:00:00',
      `
    quantityint(2NOT NULL default '1',
      `
    priorityint(1NOT NULL default '2',
      `
    commentvarchar(255) default NULL,
      
    PRIMARY KEY  (`products_id`,`un_wishlists_id`)
    TYPE=MyISAM
    I am using 1.3.8a zen cart version. I have tried to install this module on classic template - nothin'... Also, I have another demo website with free template I have downloaded - also nothing...

  7. #277
    Join Date
    Jun 2009
    Location
    Orange County, California
    Posts
    544
    Plugin Contributions
    18

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    manojlo,

    I don't see any prefixes in the SQL you've posted. you would want to look in your phpMyAdmin and find out what your prefixes are, then add them like so:

    prefix_un_wishlists

  8. #278
    Join Date
    Dec 2010
    Location
    Belgrade
    Posts
    15
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    oh, sorry :)
    zc_testshop_internet is my prefix. Maybe it is too long???

  9. #279
    Join Date
    Jun 2009
    Location
    Orange County, California
    Posts
    544
    Plugin Contributions
    18

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    ok, try adding that into the SQL and run it inside your admin. if it's not working, post the actual code you've used in the admin so I can review

  10. #280
    Join Date
    Dec 2010
    Location
    Belgrade
    Posts
    15
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    hm... when I add my prefix to SQL it wont work... when I upload SQL as it is, it is OK?!?!?!


 

 
Page 28 of 32 FirstFirst ... 182627282930 ... LastLast

Similar Threads

  1. Wishlist 0.9
    By vinnyna in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Nov 2011, 03:52 PM
  2. 1.3 Compatible Contributions
    By borzoid in forum All Other Contributions/Addons
    Replies: 83
    Last Post: 26 Apr 2009, 11:50 PM
  3. MZMT compatible?
    By robeartoesart in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 4 Oct 2006, 01:29 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