forestl Posted January 2, 2006 Share Posted January 2, 2006 When I am in my admin panel I get the following message Error: Catalog images directory does not exist: /hsphere/local/home/tokyofor/www.kokoro-jewelry.com//catalog/images/ Note the // instead of the / in front of catalog. I setup my configure.php for the SSL as described in the OSCommerce knowledge base article ID#75 The associated lines are: define('HTTP_SERVER', 'http://www.kokoro-jewelry.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://kokoro-jewelry.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL',true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.kokoro-jewelry.com'); define('HTTPS_COOKIE_DOMAIN', 'www.kokoro-jewelry.com'); I also noticed that there are other configure.php files not mentioned I set those up as follows: under admin/includes the associated lines are: define('HTTP_SERVER', 'https://www.kokoro-jewelry.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.kokoro-jewelry.com'); define('HTTPS_CATALOG_SERVER', 'https://www.kokoro-jewelry.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) Under admin/includes/local the associated lines are define('HTTP_SERVER', 'http://www.kokoro-jewelry.com'); define('DIR_FS_DOCUMENT_ROOT', '/hsphere/local/home/tokyofor/www.kokoro-jewelry.com/'); define('DIR_FS_LOGS', '/hsphere/local/home/tokyofor/logs/www.kokoro-jewelry.com'); define('ENABLE_SSL', 1); Here I change ENABLE_SSL value from 0 to 1 which I think got the SSL working properly as it was not working before and put in the website path for the HTTP_SERVER. The other values were already their. Under catalog/includes/local the associated lines are <? define('HTTP_SERVER', 'http://www.kokoro-jewelry.com'); define('HTTPS_SERVER', 'https://www.kokoro-jewelry.com'); define('DIR_FS_DOCUMENT_ROOT', '/hsphere/local/home/tokyofor/www.kokoro-jewelry.com/'); define('DIR_FS_LOGS', '/hsphere/local/home/tokyofor/logs/www.kokoro-jewelry.com'); define('ENABLE_SSL', 1); Sacme comments as above except you will notice that this file has a define('HTTPS_SERVER' entry that the other file did not for some reason. Any help would be appreciated. Thanks much, Link to comment Share on other sites More sharing options...
forestl Posted January 2, 2006 Author Share Posted January 2, 2006 When I am in my admin panel I get the following message Error: Catalog images directory does not exist: /hsphere/local/home/tokyofor/www.kokoro-jewelry.com//catalog/images/ Note the // instead of the / in front of catalog. I setup my configure.php for the SSL as described in the OSCommerce knowledge base article ID#75 The associated lines are: define('HTTP_SERVER', 'http://www.kokoro-jewelry.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://kokoro-jewelry.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL',true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.kokoro-jewelry.com'); define('HTTPS_COOKIE_DOMAIN', 'www.kokoro-jewelry.com'); I also noticed that there are other configure.php files not mentioned I set those up as follows: under admin/includes the associated lines are: define('HTTP_SERVER', 'https://www.kokoro-jewelry.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.kokoro-jewelry.com'); define('HTTPS_CATALOG_SERVER', 'https://www.kokoro-jewelry.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) Under admin/includes/local the associated lines are define('HTTP_SERVER', 'http://www.kokoro-jewelry.com'); define('DIR_FS_DOCUMENT_ROOT', '/hsphere/local/home/tokyofor/www.kokoro-jewelry.com/'); define('DIR_FS_LOGS', '/hsphere/local/home/tokyofor/logs/www.kokoro-jewelry.com'); define('ENABLE_SSL', 1); Here I change ENABLE_SSL value from 0 to 1 which I think got the SSL working properly as it was not working before and put in the website path for the HTTP_SERVER. The other values were already their. Under catalog/includes/local the associated lines are <? define('HTTP_SERVER', 'http://www.kokoro-jewelry.com'); define('HTTPS_SERVER', 'https://www.kokoro-jewelry.com'); define('DIR_FS_DOCUMENT_ROOT', '/hsphere/local/home/tokyofor/www.kokoro-jewelry.com/'); define('DIR_FS_LOGS', '/hsphere/local/home/tokyofor/logs/www.kokoro-jewelry.com'); define('ENABLE_SSL', 1); Sacme comments as above except you will notice that this file has a define('HTTPS_SERVER' entry that the other file did not for some reason. Any help would be appreciated. Thanks much, Sorry, I forgot to mention that this problem with my catalog images and not being ables to see most of the images on my pages occured after I got SSL up and running. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.