Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Images doesn't appear


insmen

Recommended Posts

Hello all

 

I'll check it the forum for another topics like this one and I try it everything ... when I put a new product the image of this product don't appear on website. I just reinstall it the script .... I have the same problem ... so I put there only one product if anyone can please check to see .

 

My include/configure.php is :

 

<?php

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

define('HTTPS_SERVER', 'https://vitaminenaturiste.com');

define('ENABLE_SSL', false);

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

define('HTTPS_COOKIE_DOMAIN', 'vitaminenaturiste.com');

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

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

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

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

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/public_html/calivita/');

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

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

 

define('DB_SERVER', '127.0.0.1');

define('DB_SERVER_USERNAME', 'xxxxxxxxxxx');

define('DB_SERVER_PASSWORD', 'xxxxxxxxxxx');

define('DB_DATABASE', 'xxxxxxxxxxx');

define('USE_PCONNECT', 'false');

define('STORE_SESSIONS', 'mysql');

?>

 

 

The error I get in the admin area is " Error: Catalog images directory does not exist: /home/public_html/calivita/images/"

 

 

 

And one more thingh, doesn't appear not even the all description of the product .... just a few words and that's all ....

 

Thanks

Link to comment
Share on other sites

Hi,

 

Depends on the server set up but you can try this first in the includes/configure.php

 

define('HTTP_COOKIE_PATH', '/');

define('HTTPS_COOKIE_PATH', '/');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '/');

 

and further down change

 

define('DIR_FS_CATALOG', '/home/public_html/calivita/');

 

 

to

 

define('DIR_FS_CATALOG', '/home/calivita/public_html/');

 

John

 

PS: you will also have to change the admin/includes/configure.php accordingly

To improve is to change; to be perfect is to change often.

 

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...