brad5150 Posted April 19, 2008 Share Posted April 19, 2008 I have been looking throughout this site and its knowledge base without luck. I will keep looking, but in the mean time if anyone has thoughts on this by all means share. On one of my stores in the categories/Products I got the error that the images folder does not exist during set up. I added this directory and started up loading products without issue. With products now up I am now getting the same message reappearing Error: Catalog images directory does not exist: I checked to see if the folder is there and yes its there. Why am I getting this error now? Thank you Link to comment Share on other sites More sharing options...
♥geoffreywalton Posted April 19, 2008 Share Posted April 19, 2008 Suspect the parameters you have in includes/configure.php do not "point" to where you think it does. Try posting them ( exclude user name , passwords ) Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile Virus Threat Scanner My Contributions Basic install answers. Click here for Contributions / Add Ons. UK your site. Site Move. Basic design info. For links mentioned in old answers that are no longer here follow this link Useful Threads. If this post was useful, click the Like This button over there ======>>>>>. Link to comment Share on other sites More sharing options...
brad5150 Posted April 21, 2008 Author Share Posted April 21, 2008 Suspect the parameters you have in includes/configure.php do not "point" to where you think it does. Try posting them ( exclude user name , passwords ) One new part of the problem started to occur since posting. The end result of this error was the 'click to enlarge' stopped working. However Firefox does not appear to be effected since I can click to enlarge without an issue. IE (7) on the other hand still does not allow the pop up to occur. Here is the info.. thank you very much for your help. <?php define('HTTP_SERVER', 'https://www.nowvitaminsonline.com'); define('HTTPS_SERVER', 'https://www.nowvitaminsonline.com'); define('ENABLE_SSL', false); define('HTTP_COOKIE_DOMAIN', 'www.nowvitaminsonline.com'); define('HTTPS_COOKIE_DOMAIN', 'www.nowvitaminsonline.com'); define('HTTP_COOKIE_PATH', '/os/catalog/'); define('HTTPS_COOKIE_PATH', '/os/catalog/'); define('DIR_WS_HTTP_CATALOG', '/os/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/os/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', '/var/www/vhosts/NOWVITAMINSONLINE.COM/httpsdocs/os/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', '******'); define('DB_SERVER_PASSWORD', '*********'); define('DB_DATABASE', '**********'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); ?> Link to comment Share on other sites More sharing options...
dmnalven Posted April 21, 2008 Share Posted April 21, 2008 define('HTTP_COOKIE_PATH', '/os/catalog/'); define('HTTPS_COOKIE_PATH', '/os/catalog/'); define('DIR_WS_HTTP_CATALOG', '/os/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/os/catalog/'); You are pointing to an absolute address from the root of your servers' filesystem. These should point to your stores' root directory with a relative address from the domains' web root. In your case it appears to be 'os/catalog/'. For ALL problems, please review this link first -> osCommerce Knowledge Base Link to comment Share on other sites More sharing options...
brad5150 Posted April 22, 2008 Author Share Posted April 22, 2008 define('HTTP_COOKIE_PATH', '/os/catalog/');define('HTTPS_COOKIE_PATH', '/os/catalog/'); define('DIR_WS_HTTP_CATALOG', '/os/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/os/catalog/'); You are pointing to an absolute address from the root of your servers' filesystem. These should point to your stores' root directory with a relative address from the domains' web root. In your case it appears to be 'os/catalog/'. I attempted this fix, but am having the same issues. <_< I am getting another pair of eyes to work with me on this. But if anyone here has other thoughts I would be most grateful. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.