Note: one of the key settings is where you put the code ... you have it in the /Store/cart/ directory
These need to reference that correctly:define('DIR_WS_ADMIN', 'Store/cart/admin/');
define('DIR_WS_CATALOG', 'Store/cart/');
define('DIR_WS_HTTPS_ADMIN', 'Store/cart/admin/');
define('DIR_WS_HTTPS_CATALOG', 'Store/cart');
Note the missing / in front of Store ... also, it is a good idea to keep directory and filenames lowercase without space, special characters etc. otherwise humans may remember what they are ... but not remember how to type them ...define('DIR_WS_ADMIN', '/Store/cart/admin/');
define('DIR_WS_CATALOG', '/Store/cart/');
define('DIR_WS_HTTPS_ADMIN', '/Store/cart/admin/');
define('DIR_WS_HTTPS_CATALOG', '/Store/cart');
Check the true path to your home directory on these:
And then the true path to your cache directory on:define('DIR_FS_ADMIN', 'http://www.rtswinc.com/Store/cart/admin/');
define('DIR_FS_CATALOG', 'http://www.rtswinc.com/Store/cart/');
define('DIR_FS_SQL_CACHE', './../cache');




