OSCOMMERCE SUPPORT CALL 702-453-3332

 

Help - Search - Members - Calendar
Full Version: Getting the Error: Catalog images directory does not exist: /catalog/images/
osCommerce Community Support Forums > osCommerce Online Merchant v2.x > Installation and Configuration
mjfontec
I just reconfigured my configure.php files to get working with SSL. Any ideas what I did wrong?

Thanks
Mike
fresnomotorsports
QUOTE (mjfontec @ Feb 7 2007, 04:44 AM) *
I just reconfigured my configure.php files to get working with SSL. Any ideas what I did wrong?

Thanks
Mike


Oh joy. I just went through the *exact* same thing. About three hours ago. I had to fully qualify a few paths in my configure.php. Here's what I did:

define('HTTP_SERVER', 'http://www.fresnomotorsports.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.fresnomotorsports.com');
define('HTTP_CATALOG_SERVER', 'http://www.fresnomotorsports.com');
define('HTTPS_CATALOG_SERVER', 'https://www.fresnomotorsports.com');
define('ENABLE_SSL_CATALOG', 'TRUE'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/web/sites/bigkahuna/fresnomotorsports.com/'); // where the pages are located on the server
define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/web/sites/bigkahuna/fresnomotorsports.com/catalog/admin/'); // absolute pate required
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_FS_CATALOG', '/web/sites/bigkahuna/fresnomotorsports.com/catalog/'); // absolute path required
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
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', DIR_WS_CATALOG . 'includes/languages/');
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_BACKUP', DIR_FS_ADMIN . 'backups/');

Hope this helps!

Chris
mjfontec
Thanks Chris, this was a HUGE help. Things are back up again.

Mike

QUOTE (fresnomotorsports @ Feb 7 2007, 01:13 AM) *
Oh joy. I just went through the *exact* same thing. About three hours ago. I had to fully qualify a few paths in my configure.php. Here's what I did:

define('HTTP_SERVER', 'http://www.fresnomotorsports.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://www.fresnomotorsports.com');
define('HTTP_CATALOG_SERVER', 'http://www.fresnomotorsports.com');
define('HTTPS_CATALOG_SERVER', 'https://www.fresnomotorsports.com');
define('ENABLE_SSL_CATALOG', 'TRUE'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/web/sites/bigkahuna/fresnomotorsports.com/'); // where the pages are located on the server
define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/web/sites/bigkahuna/fresnomotorsports.com/catalog/admin/'); // absolute pate required
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_FS_CATALOG', '/web/sites/bigkahuna/fresnomotorsports.com/catalog/'); // absolute path required
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');
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', DIR_WS_CATALOG . 'includes/languages/');
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_BACKUP', DIR_FS_ADMIN . 'backups/');

Hope this helps!

Chris
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.