Kasketkarl.nu Posted August 21, 2010 Share Posted August 21, 2010 I get this: Error: Catalog images directory does not exist: /images/ I cant upload pictures, or see them in product info.. I tryed change it to ../images/ nothing happens, it like there is a / too much somewhere? :S define('HTTP_SERVER', 'http://moebelarkitekten.dk/'); define('HTTP_CATALOG_SERVER', 'http://moebelarkitekten.dk/'); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); define('DIR_WS_ADMIN', 'admin/'); define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); define('DIR_WS_CATALOG', '/'); define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); 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/'); Link to comment Share on other sites More sharing options...
FIMBLE Posted August 21, 2010 Share Posted August 21, 2010 remove the trailing forward slash from the end of http://moebelarkitekten.dk/ it makes the path to your images http://moebelarkitekten.dk//images hence why it cannot be found make define('HTTP_SERVER', 'http://moebelarkitekten.dk/'); define('HTTP_CATALOG_SERVER', 'http://moebelarkitekten.dk/'); like define('HTTP_SERVER', 'http://moebelarkitekten.dk'); define('HTTP_CATALOG_SERVER', 'http://moebelarkitekten.dk'); Nic Sometimes you're the dog and sometimes the lamp post [/url] My Contributions Link to comment Share on other sites More sharing options...
Kasketkarl.nu Posted August 21, 2010 Author Share Posted August 21, 2010 All wrong answer, all people who has this problem, look closely at this topic, its the only thing that works! http://kamran.kazempour.ca/blog/2007/03/02/oscommerce-error-catalog-images-directory-does-not-exist/ Link to comment Share on other sites More sharing options...
Guest Posted August 21, 2010 Share Posted August 21, 2010 Silas, That to is an incomplete answer especially if your cart is loaded into the default /catalog directory. The .. would bring it to the root which would fail, that reference link does not even mention the default directory issue. Nics answer was correct providing the rest of the configure.php is set up correctly. That, and the permissions on the /images directory could be the cause. Chris Link to comment Share on other sites More sharing options...
map Posted August 28, 2010 Share Posted August 28, 2010 I have tried all the suggestions listed but still have "Error: Catalog images directory does not exist" since moving to my new server. All else is working fine in the user end. The error is only on the Catalog pages of Admin. Any help would be appreciated. Thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.