Quote Originally Posted by bsonhome View Post
Hi, i start read the post from page 30 to the last page, i still cant found out my solution
when i run the install-ZC-v-1-5.sql
i got following error

Code:
ERROR: Cannot insert configuration_key "" because it already exists
Error ERROR: Cannot insert configuration_key "" because it already exists
Error ERROR: Cannot insert configuration_key "" because it already exists
Error ERROR: Cannot insert configuration_key "" because it already exists
Warning Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.
when i go to admin page Configuration>>configure RCS is a empty page, i only see the title and head line,

I changed TYPE=MyISAM to ENGINE=MyISAM still don't work

I see someone manually add data in myphpadmin seems fix the problem , but I know nothing about programming and I am not good with myphpadmin, so i don't know how to do.

anyone help ?

thanks
You might want to try what lat9 said to do to see if that will solve your problem.

You might try editing /YOUR_ADMIN/includes/extra_datafiles/recover_cart_filenames.php:
Code:
<?php /* $Id: recover_cart_filenames.php, v4.00.00a 2012/04/23 testuser -> iChoze -> Zen Cart v1.5 $ Exp $ */ define('FILENAME_RECOVER_CART_SALES', 'recover_cart_sales.php'); define('FILENAME_STATS_RECOVER_CART_SALES', 'stats_recover_cart_sales.php'); define('TABLE_SCART', DB_PREFIX . 'scart'); ?>
As it stands (v4.00.00a), the tools associated with this plugin will not show in the menu unless you're a superuser. Try changing each of the first two defines, removing the items marked in red above:

<?php /* $Id: recover_cart_filenames.php, v4.00.00a 2012/04/23 testuser -> iChoze -> Zen Cart v1.5 $ Exp $ */ define('FILENAME_RECOVER_CART_SALES', 'recover_cart_sales'); define('FILENAME_STATS_RECOVER_CART_SALES', 'stats_recover_cart_sales'); define('TABLE_SCART', DB_PREFIX . 'scart'); ?>