deep_ngage Posted February 26, 2010 Share Posted February 26, 2010 Hello all ! I am new to oscommerce. I just installed Oscommerce on my site. My Website [under Devlopment] But whenevr I click on any link i get strange error saying page is not available. Since I have no clue what this error is called, I am unable to search the forum. Kindly help me out. Thanking you all in advance. Link to comment Share on other sites More sharing options...
♥mdtaylorlrim Posted February 26, 2010 Share Posted February 26, 2010 Hello all ! I am new to oscommerce. I just installed Oscommerce on my site. My Website [under Devlopment] But whenevr I click on any link i get strange error saying page is not available. Since I have no clue what this error is called, I am unable to search the forum. Kindly help me out. Thanking you all in advance. Looks like in your configure.php files all of the / are missing from the end of the directories. Community Bootstrap Edition, Edge Avoid the most asked question. See How to Secure My Site and How do I...? Link to comment Share on other sites More sharing options...
deep_ngage Posted February 27, 2010 Author Share Posted February 27, 2010 Looks like in your configure.php files all of the / are missing from the end of the directories. Thanks for your fast reply. But my knowledge is really limited. I am posting my configure.php here : <?php define('HTTP_SERVER', 'http://http://vasairoad.info'); define('HTTP_CATALOG_SERVER', 'http://http://vasairoad.info'); define('HTTPS_CATALOG_SERVER', 'http://vasairoad.info'); define('ENABLE_SSL_CATALOG', 'False'); define('DIR_FS_DOCUMENT_ROOT', '/home/vol12/0fees.net/fees0_4981673/vasairoad.info/htdocs//'); define('DIR_WS_ADMIN', '//admin/'); define('DIR_FS_ADMIN', '/home/vol12/0fees.net/fees0_4981673/vasairoad.info/htdocs//admin/'); define('DIR_WS_CATALOG', '//'); define('DIR_FS_CATALOG', '/home/vol12/0fees.net/fees0_4981673//htdocs//'); 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/'); define('DB_SERVER', 'XXXX'); define('DB_SERVER_USERNAME', 'XXXX'); define('DB_SERVER_PASSWORD', 'XXXX'); define('DB_DATABASE', 'XXXX'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); ?> Link to comment Share on other sites More sharing options...
Guest Posted February 27, 2010 Share Posted February 27, 2010 Look at these lines: define('HTTP_SERVER', 'http://http://vasairoad.info'); define('HTTP_CATALOG_SERVER', 'http://http://vasairoad.info'); define('HTTPS_CATALOG_SERVER', 'http://vasairoad.info'); You have http://http:// should be: define('HTTP_SERVER', 'http://www.vasairoad.info'); define('HTTP_CATALOG_SERVER', 'http://www.vasairoad.info'); define('HTTPS_CATALOG_SERVER', 'http://www.vasairoad.info'); also check for // you should only have one / Chris Link to comment Share on other sites More sharing options...
Guest Posted February 27, 2010 Share Posted February 27, 2010 Actually here, since you may not catch them all: define('HTTP_SERVER', 'http://www.vasairoad.info'); define('HTTP_CATALOG_SERVER', 'http://www.vasairoad.info'); define('HTTPS_CATALOG_SERVER', 'http://www.vasairoad.info'); //change this to 'https://www.vasairoad.info') once you get your SSL certificate define('ENABLE_SSL_CATALOG', 'False'); define('DIR_FS_DOCUMENT_ROOT', '/home/vol12/0fees.net/fees0_4981673/vasairoad.info/htdocs/'); define('DIR_WS_ADMIN', '/admin/'); define('DIR_FS_ADMIN', '/home/vol12/0fees.net/fees0_4981673/vasairoad.info/htdocs/admin/'); define('DIR_WS_CATALOG', '/'); define('DIR_FS_CATALOG', '/home/vol12/0fees.net/fees0_4981673/htdocs/'); 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/'); Chris ps. Check your admin>includes>configure.php file for the same errors Link to comment Share on other sites More sharing options...
deep_ngage Posted February 27, 2010 Author Share Posted February 27, 2010 Actually here, since you may not catch them all: define('HTTP_SERVER', 'http://www.vasairoad.info'); define('HTTP_CATALOG_SERVER', 'http://www.vasairoad.info'); define('HTTPS_CATALOG_SERVER', 'http://www.vasairoad.info'); //change this to 'https://www.vasairoad.info') once you get your SSL certificate define('ENABLE_SSL_CATALOG', 'False'); define('DIR_FS_DOCUMENT_ROOT', '/home/vol12/0fees.net/fees0_4981673/vasairoad.info/htdocs/'); define('DIR_WS_ADMIN', '/admin/'); define('DIR_FS_ADMIN', '/home/vol12/0fees.net/fees0_4981673/vasairoad.info/htdocs/admin/'); define('DIR_WS_CATALOG', '/'); define('DIR_FS_CATALOG', '/home/vol12/0fees.net/fees0_4981673/htdocs/'); 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/'); Chris ps. Check your admin>includes>configure.php file for the same errors Thanks DunWeb. But although I rectified my configure.php as per your instructions, I am still facing same problem. Kindly Help. Thanks in advance. Link to comment Share on other sites More sharing options...
deep_ngage Posted March 1, 2010 Author Share Posted March 1, 2010 Still facing the problem. Plz help me out !! :blush: Or just tell me in which type this error belongs so that I can search the forum. Thanks in advance. Link to comment Share on other sites More sharing options...
♥mdtaylorlrim Posted March 1, 2010 Share Posted March 1, 2010 Still facing the problem. Plz help me out !! :blush: Or just tell me in which type this error belongs so that I can search the forum. Thanks in advance. Let's see the configure.php file again. Look's like you have some quotes where they do not belong. Community Bootstrap Edition, Edge Avoid the most asked question. See How to Secure My Site and How do I...? Link to comment Share on other sites More sharing options...
♥mdtaylorlrim Posted March 1, 2010 Share Posted March 1, 2010 Looks like you are missing a line in your configure.php file. define('DIR_WS_HTTPS_CATALOG', '/'); Community Bootstrap Edition, Edge Avoid the most asked question. See How to Secure My Site and How do I...? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.