ozstar Posted August 21, 2006 Share Posted August 21, 2006 HI, On an install of the latest osc I am getting this.. Obviously something in the configure file, but I can't find it after some time trying to work it out. Checked with a previous version of configure but I notice it is now coded differently. Warning Warning: The downloadable products directory does not exist: /home/starmp3/public_html/mp3store/catalog/home/starmp3/public_html/mp3store/catalog/download/. Downloadable products will not work until this directory is valid. My path is /home/starmp3/public_html/mp3store/catalog/ www.mydom.com/mp3store/catalog download does exist in catalog directory. Catalog configure define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.mystoremp3.com'); define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/mp3store/catalog/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/mp3store/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/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/home/starmp3/public_html/mp3store/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); adming configure define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/starmp3/public_html/mp3store/catalog/'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) define('DIR_WS_ADMIN', '/mp3store/catalog/admin/'); define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); define('DIR_WS_CATALOG', '/mp3store/catalog/'); define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); 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/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); Thanks oz <_< Link to comment Share on other sites More sharing options...
♥Vger Posted August 21, 2006 Share Posted August 21, 2006 define('DIR_FS_CATALOG', '/home/starmp3/public_html/mp3store/catalog/'); You were duplicating the pathway. Also change this to: define('DIR_FS_ADMIN', '/home/starmp3/public_html/mp3store/catalog/admin/'); Vger Link to comment Share on other sites More sharing options...
ozstar Posted August 21, 2006 Author Share Posted August 21, 2006 Thank you Vger, I think I did that correctly howver now I get this.. Warning: The downloadable products directory does not exist: DIR_FS_CATALOGdownload/. Downloadable products will not work until this directory is valid. My files are now this.. \CATALOG define('HTTPS_COOKIE_DOMAIN', ''); define('HTTP_COOKIE_PATH', '/mp3store/catalog/'); define('HTTPS_COOKIE_PATH', ''); define('DIR_WS_HTTP_CATALOG', '/mp3store/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/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_ADMIN', '/home/starmp3/public_html/mp3store/catalog/admin/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); ADMIN define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/starmp3/public_html/mp3store/catalog/'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) define('DIR_WS_ADMIN', '/mp3store/catalog/admin/'); define('DIR_FS_ADMIN', '/home/starmp3/public_html/mp3store/catalog/admin/'); define('DIR_WS_CATALOG', '/mp3store/catalog/'); define('DIR_FS_CATALOG', '/home/starmp3/public_html/mp3store/catalog/'); 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/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); Regards, Oz :) Link to comment Share on other sites More sharing options...
spax Posted August 21, 2006 Share Posted August 21, 2006 You have a missing apostrophe. Try this in includes/configure.php define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG' . 'download/'); Link to comment Share on other sites More sharing options...
spax Posted August 21, 2006 Share Posted August 21, 2006 Double post removed. Link to comment Share on other sites More sharing options...
spax Posted August 21, 2006 Share Posted August 21, 2006 Sorry, forget that last post, I was looking at it wrong. It was ok as it was before. Time for bed methinks. Link to comment Share on other sites More sharing options...
ozstar Posted August 22, 2006 Author Share Posted August 22, 2006 Phew.. found it.. Looks like this is what it should be.. define('DIR_FS_DOWNLOAD','/home/starmp3/public_html/mp3store/catalog/download/'); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.