jspauldi Posted January 22, 2007 Share Posted January 22, 2007 When ever I go to my catalog none of the links work and none of the images show up. I have to type in the /catalog manually to be directed to the page. I have no idea what the problem is or how to fix it. If any one can figure this very vague problem out it would be greatly appreciated as I have a website launch on Feb 1st. Thank You Jessica Link to comment Share on other sites More sharing options...
davidinottawa Posted January 22, 2007 Share Posted January 22, 2007 When ever I go to my catalog none of the links work and none of the images show up. I have to type in the /catalog manually to be directed to the page. I have no idea what the problem is or how to fix it. If any one can figure this very vague problem out it would be greatly appreciated as I have a website launch on Feb 1st. Thank You Jessica you need to set up you paths in your : includes/configure.php and admin/includes/configure.php files. if you edit these, and it still doesn;t work - post a url. d Link to comment Share on other sites More sharing options...
jspauldi Posted January 22, 2007 Author Share Posted January 22, 2007 you need to set up you paths in your :includes/configure.php and admin/includes/configure.php files. if you edit these, and it still doesn;t work - post a url. d Thank you only one little problem I don't know how to set up the path thanks a million Link to comment Share on other sites More sharing options...
yanarasod Posted January 22, 2007 Share Posted January 22, 2007 You includes/configure.php must look something like this if the shop is installed at the root i.e. http://www.xxx.com define('HTTP_SERVER', 'http://www.xxx.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://xxx.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.xxx.com'); define('HTTPS_COOKIE_DOMAIN', 'xxx.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_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', '/home/xxx/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.