Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Error: Catalog images directory does not exist: /images/


Kasketkarl.nu

Recommended Posts

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

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

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...