Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

config file details


mydaddyfixes

Recommended Posts

Everytime I go to my catalog page in the admin interface I get the following error message highlighted in pink at the top of the page.

 

Error: Catalog images directory does not exist: /home/m/y/mydaddyfixes.com/html/catalog/images/

 

Below are the details of my configure.php file:

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'http://www.mydaddyfixes.com');

define('HTTPS_SERVER', 'https://w7.server-shield.com/mydaddyfixes.com');

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', 'mydaddyfixes.com');

define('HTTPS_COOKIE_DOMAIN', 'w7.server-shield.com/mydaddyfixes.com');

define('HTTP_COOKIE_PATH', '/catalog/');

define('HTTPS_COOKIE_PATH', '/catalog/');

define('DIR_WS_HTTP_CATALOG', '/catalog/');

define('DIR_WS_HTTPS_CATALOG', '/catalog/');

define('DIR_WS_IMAGES', 'images/');

define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

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

define('DIR_FS_CATALOG', '/home/m/y/mydaddyfixes.com/html/catalog/');

define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');

 

By the looks of it DIR_FS_CATALOG is a local path. What should it be relative to ie c: drive?

I have tried changing the path to DIR_FS_CATALOG', 'catalog/' however the error

 

Error: Catalog images directory does not exist: /home/m/y/mydaddyfixes.com/html/catalog/images/

 

still appears even after uploading the new configure.php to the server?

 

Can someone shed some light on this. At the moment I can't add pictures to products because of this error.

 

Thanks in advance

Link to comment
Share on other sites

I have found a second configure.php file under the admin section. With the following contents

 

// Define the webserver and path parameters

// * DIR_FS_* = Filesystem directories (local/physical)

// * DIR_WS_* = Webserver directories (virtual/URL)

define('HTTP_SERVER', 'https://w7.server-shield.com/mydaddyfixes.com');

define('HTTP_CATALOG_SERVER', 'https://w7.server-shield.com/mydaddyfixes.com');

define('HTTPS_CATALOG_SERVER', 'https://w7.server-shield.com/mydaddyfixes.com');

define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

define('DIR_FS_DOCUMENT_ROOT', '/home/m/y/mydaddyfixes.com/html/catalog/'); // where the pages are located on the server

define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required

define('DIR_FS_ADMIN', '/home/m/y/mydaddyfixes.com/html/catalog/admin/'); // absolute pate required

define('DIR_WS_CATALOG', '/catalog/'); // absolute path required

define('DIR_FS_CATALOG', '/home/m/y/mydaddyfixes.com/html/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/');

 

Does anyone have any ideas on why I am receiving the error:

 

Error: Catalog images directory does not exist: /home/m/y/mydaddyfixes.com/html/catalog/images/ when accessing the admin pages.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...