This is the error I am having:
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 ]
This is part from configure.php file:
// define our database connection
define('DB_TYPE', 'mysql');
define('DB_PREFIX', 'zc_testshop_cors');
And this is un_whislist.sql:
# WishList v0.5 SQL Load for MySQL databases
# --------------------------------------------------------
#
# Table structure for table un_wishlists
#
DROP TABLE IF EXISTS `zc_testshop_cors_un_wishlists`;
CREATE TABLE `zc_testshop_cors_un_wishlists` (
`id` int(11) NOT NULL auto_increment,
`customers_id` int(11) NOT NULL default '0',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
`name` varchar(255) default NULL,
`comment` varchar(255) default NULL,
`default_status` tinyint(1) NOT NULL default '0',
`public_status` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`id`)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Table structure for table un_products_to_wishlists
#
DROP TABLE IF EXISTS `zc_testshop_cors_un_products_to_wishlists`;
CREATE TABLE `zc_testshop_cors_un_products_to_wishlists` (
`products_id` int(11) NOT NULL default '0',
`un_wishlists_id` int(11) NOT NULL default '0',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
`quantity` int(2) NOT NULL default '1',
`priority` int(1) NOT NULL default '2',
`comment` varchar(255) default NULL,
PRIMARY KEY (`products_id`,`un_wishlists_id`)
) TYPE=MyISAM;
This is the URL of my test website where I have promlems:
http://testshop.internet.co.rs
I have done everything from installation instructions and still nothjng... I have ‘Add to WhisList’ button, I also see the wishlist sidebox, but when I click on ‘Add to WhisList’ it breaks...
Please, I WILL KILL MY SELF! :D