New Zenner
- Join Date:
- Sep 2006
- Posts:
- 27
- Plugin Contributions:
- 0
upgraded to 1.3.6, need help with configure.php
I'm getting the below errors when I try to navigate to my test site, I believe it has to do with me modifying the configure.php's incorrectly. My live site lives in <root> directory, but the test\upgrade site lives in <root>\store_new. Can someone point out what I'm doing wrong?
These are the errors I get for any page I navigate to:
Warning: include(store_new/includes/auto_loaders/config.core.php) [function.include]: failed to open stream: No such file or directory in /home/xxxxx/public_html/store_new/includes/application_top.php on line 90
Warning: include(store_new/includes/auto_loaders/config.core.php) [function.include]: failed to open stream: No such file or directory in /home/xxxxx/public_html/store_new/includes/application_top.php on line 90
Warning: include() [function.include]: Failed opening 'store_new/includes/auto_loaders/config.core.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxxx/public_html/store_new/includes/application_top.php on line 90
....
My configure.php look like this:
define('DIR_WS_CATALOG', 'store_new/');
define('DIR_WS_HTTPS_CATALOG', 'store_new/');
define('DIR_WS_IMAGES', 'store_new/images/');
define('DIR_WS_INCLUDES', 'store_new/includes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');
define('DIR_WS_PHPBB', 'store_new/');
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
define('DIR_FS_CATALOG', '/home/xxxxx/public_html/store_new/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
admin\includes:
define('DIR_WS_ADMIN', '/store_new/admin/');
define('DIR_WS_CATALOG', '/store_new/');
define('DIR_WS_HTTPS_ADMIN', '/store_new/admin/');
define('DIR_WS_HTTPS_CATALOG', '/store_new/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
define('DIR_FS_ADMIN', '/home/xxxxx/public_html/store_new/admin/');
define('DIR_FS_CATALOG', '/home/xxxxx/public_html/store_new/');
define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');