Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Error in ADMIN ...maybe in configure.php


Kemrit

Recommended Posts

Posted

Verify that your settings are correct in catalog/admin/includes/configure.php.

 

Make sure that that the "images" directory exists in the admin folder and has full read/write permissions (chmod 777).

 

If this doesn't help then post your admin/includes/configure.php file for the "configure" guru's to have a go at.

 

HTH

Tom

Posted

... i confused....

 

This is the CONFIGURE.PHP of the ADMIN/INCLUDES ....

 

  define('HTTP_SERVER', 'http://londres.dominiodns.com/~mundoacc/'); // eg, http://localhost - should not be empty for productive servers
 define('HTTP_CATALOG_SERVER', 'http://londres.dominiodns.com/~mundoacc/');
 define('HTTPS_CATALOG_SERVER', '');
 define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
 define('DIR_FS_DOCUMENT_ROOT', '/public_html/catalog/'); // where the pages are located on the server
 define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required
 define('DIR_FS_ADMIN', '/home/mundoacc/public_html/catalog/admin/'); // absolute pate required
 define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
 define('DIR_FS_CATALOG', '/home/mundoacc/public_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 . '');
 define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
 define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 

The TEMP URL is-> http://londres.dominiodns.com/~mundoacc/catalog/

 

I can't find the error :(

Posted

Try changing

 

define('DIR_FS_DOCUMENT_ROOT', '/public_html/catalog/'); // where the pages are located on the server

 

to

 

define('DIR_FS_DOCUMENT_ROOT', '/home/mundoacc/public_html/catalog/'); // where the pages are located on the server

 

Tom

Posted
Try changing

 

define('DIR_FS_DOCUMENT_ROOT', '/public_html/catalog/'); // where the pages are located on the server

 

to

 

define('DIR_FS_DOCUMENT_ROOT', '/home/mundoacc/public_html/catalog/'); // where the pages are located on the server

 

Tom

 

 

Yeah OceanRanch is also correct about that line

 

dont forget to change both

Posted

define('HTTP_SERVER', 'http://londres.dominiodns.com/~mundoacc/'); // eg, http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://londres.dominiodns.com/~mundoacc/'); // 
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', '/home/mundoacc/public_html/catalog/'); // where the pages are located on the server     [[ Editado ]]
define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required
define('DIR_FS_ADMIN', '/home/mundoacc/public_html/catalog/admin/'); // absolute pate required
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_FS_CATALOG', '/home/mundoacc/public_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/');  //  [[ Editado ]]
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 

....

Posted

Try this:

define('HTTP_SERVER', 'http://londres.dominiodns.com/~mundoacc/'); // eg, http://localhost - should not be empty for productive servers
define('HTTP_CATALOG_SERVER', 'http://londres.dominiodns.com/~mundoacc/'); //
define('HTTPS_CATALOG_SERVER', '');
define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where the pages are located on the server     [[ Editado ]]
define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required
define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); // absolute pate required
define('DIR_WS_CATALOG', '/catalog/'); // absolute path required
define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_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/');  //  [[ Editado ]]
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 

Bobby

Posted

mmmmm

 

define('DIR_FS_DOCUMENT_ROOT', '$DOCUMENT_ROOT'); // where the pages are located on the server  

Shows this ->  Error: No existe el directorio de imagenes del cat?logo: $DOCUMENT_ROOT/catalog/images/

 

and....

 

define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where the pages are located on the server  

Shows this -> Error: No existe el directorio de imagenes del cat?logo: /usr/local/apache/htdocs/catalog/images/

Posted

Change:

define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT);

back to:

define('DIR_FS_DOCUMENT_ROOT', '/home/mundoacc/public_html/catalog/');

The rest of it should be good...

 

Bobby

Posted

Error: No existe el directorio de imagenes del cat?logo: /home/mundoacc/public_html/catalog//catalog/images/

 

 

:( :(

Posted

ooops...sorry about this.

 

This:

define('DIR_FS_DOCUMENT_ROOT', '/home/mundoacc/public_html/catalog/');

should be this:

define('DIR_FS_DOCUMENT_ROOT', '/home/mundoacc/public_html');

Posted

NO ... but i try this:

 

define('DIR_FS_DOCUMENT_ROOT', '/home/mundoacc/public_html');

 

And the ERROR don't shows ... but the images/icons doesn't appear

 

 

:(

Archived

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

×
×
  • Create New...