Quote Originally Posted by swguy View Post
Follow the instructions in the readme.
It's not about following the instructions, as they don't tell you what to do if you have a zen prefix(well they say very little!), but thank you!

Do sure if you worked out the issue on this or not but I had the same problem. It is because I use a db prefix on my tables and the un_database_tables.php need fixed:

Find:
Code:
define('UN_TABLE_WISHLISTS','un_wishlists');
define('UN_TABLE_PRODUCTS_TO_WISHLISTS', 'un_products_to_wishlists');
Replace with:

Code:
define('UN_TABLE_WISHLISTS', DB_PREFIX .'un_wishlists');
define('UN_TABLE_PRODUCTS_TO_WISHLISTS', DB_PREFIX . 'un_products_to_wishlists');
So for anyone else who has db prefixes you will need to update this file it is in:

includes/extra_datafiles/un_database_tables.php