Thank You. GILBY & CountryCharm. IT Works! :clap: I have done the install on a test web. I will do it to my live site next. Thank you both very much! Otherwise I would be stuck forever.:smile:
Printable View
Thank You. GILBY & CountryCharm. IT Works! :clap: I have done the install on a test web. I will do it to my live site next. Thank you both very much! Otherwise I would be stuck forever.:smile:
I am trying to install the latest Recover Cart to a 1.5.1 store and the SQL won't install. There is an error every time. Please help...Thanks! Amy
Post the error.
can anyone tell me if Multisite is compatible with the following mods for ZC1.5.1?:
Edit Orders 4.1
Ty Package tracker 3.1.3
Super Orders 4.0.2
Recover Cart Sales v1.5
any help is appreciated.
Please assist - total newbie here!
I've uploaded the files for this plug in. I've amended the SQL as follows:
Change
TYPE=MyISAM
to
ENGINE=MyISAM
I've uploaded the SQL by the text option, rather than uploading the file and the message came up saying 15 somethings had been updated, however the new options don't appear in my menus where they're supposed to? Any suggestions? :mellow:
You might try editing /YOUR_ADMIN/includes/extra_datafiles/recover_cart_filenames.php:
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: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');
?>
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');
define('FILENAME_STATS_RECOVER_CART_SALES', 'stats_recover_cart_sales');
define('TABLE_SCART', DB_PREFIX . 'scart');
?>