Zen Cart Logo
Forums / Upgrading from 1.3.x to 1.3.9 / upgraded to 1.3.6, need help with configure.php

upgraded to 1.3.6, need help with configure.php

Locked

Views: 1,530

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
13 Jan 2007, 6:58 AM
#1
ttalk avatar

ttalk

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/');

13 Jan 2007, 8:42 AM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: upgraded to 1.3.6, need help with configure.php

I'll try to catch them all: Highlighted in red

define('DIR_WS_CATALOG', '/store_new/');
define('DIR_WS_HTTPS_CATALOG', '/store_new/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_INCLUDES', '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:

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_new/
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/');

Insure what you did not post is correct also

13 Jan 2007, 2:39 PM
#3
merlinpa1969 avatar

merlinpa1969

Totally Zenned

Join Date:
Mar 2004
Posts:
13,031
Plugin Contributions:
4

Re: upgraded to 1.3.6, need help with configure.php

while your doing the upgrade, I would suggest taking the leap all the way to 1.3.7

13 Jan 2007, 4:23 PM
#4
ttalk avatar

ttalk

New Zenner

Join Date:
Sep 2006
Posts:
27
Plugin Contributions:
0

Re: upgraded to 1.3.6, need help with configure.php

Thanks Kobra, that fixed it and I can now access the store.

Merlin, I wanted to upgrade to 1.3.6 first just for the heck of it, I guess more for practice. IF this goes well, then I can do 1.3.7 very easily - 1.3.6 is like a training to 1.3.7.