Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Images folder does not exists


chuo999

Recommended Posts

Posted

Hello all

 

I intsalled the oscommerce, it was working perfect, but suddnely, when i go to admin / catalog

it shows me the message "Error: No existe el directorio de imagenes del cat?logo: /www/images/"

(my oscommerce is in spanish) which in english means "Error: The Catalog images directory does not exist /www/images/".

 

So I cannot upload images.

 

I checked via ftp and there is the /www/images/ directory, permissions 777

 

What can be wrong ... please help!!!!

 

Thanks

 

:(

  • 2 weeks later...
Posted

Well, I'm dealing with the same problem like you. I haven't solved it yet but i guess it is related with the php versions. I tried the same codes on different servers. One of them works, the other is not. It is not related with the configuration files or something else i guess.

 

regards

Posted

Hello if you are talking about the catalog part you need to make sure that the configure.php has the currect settings.

 

Catalog is located at (catalog)/includes/configure.php

 

admin is located at (catalog)/admin/includes/configure.php

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Posted

Thanks Wade,

I've fixed it by configuring configure.php. First I had tried several ways to make it then i realized that i was working on wrong configure.php :)

 

Regards,

Selcuk

Posted
Thanks Wade,

I've fixed it by configuring configure.php. First I had tried several ways to make it then i realized that i was working on wrong configure.php :)

 

Regards,

Selcuk

 

 

hello i am having this problem with others but one @ a time lol, i am trying all sorts to sort this out and still not having any luck...

pls help me understand what is supposed to be added in the configure.php

also is it the admin one that needs changing ??? :blush:

Posted

The first portion of your includes/configure.php file should look like this.

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
 define('HTTP_SERVER', 'http://www.yourdomain.com'); // eg, http://localhost - should not be empty for productive servers
 define('HTTPS_SERVER', 'https://www.yourdomain.com'); // eg, https://localhost - should not be empty for productive servers
 define('ENABLE_SSL', TRUE); // secure webserver for checkout procedure?
 define('HTTP_COOKIE_DOMAIN', '');
 define('HTTPS_COOKIE_DOMAIN', '');
 define('HTTP_COOKIE_PATH', 'www.yourdomain.com');
 define('HTTPS_COOKIE_PATH', 'www.yourdomain.com');
 define('DIR_WS_HTTP_CATALOG', '/');
 define('DIR_WS_HTTPS_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/');

In this case the store is in the root directory not a catalog directory. If your store is http://www.yourdomain.com/catalog then you would have define catalog be

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

but everything else the same. If you do not have SSL yet, then make sure that is set to false.

 

The admin/includes/configure.php would be set up similarly.

Posted

:blink: maybe i`m not doing this correct, i do have all the correct settings, maybe i have to edit more things yet as some of my tools dont work either like DEFINE LANGUAGE & FILE MANAGER...

may need them to work b4 the image folder is allowed. hmmmmmmmm

Posted

Make sure the permissions to the image folder is set to 777. Language or file manager problems will not effect the image folder. Besides, don't use the admin consol file manager. It has some problems and will cause you problems. If you host has a file manager provided, use that, otherwise use your FTP to pull down files, change them and put them back up.

Archived

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

×
×
  • Create New...