humtum Posted August 2, 2006 Share Posted August 2, 2006 I need help here; I followed exactly every single step when I installed the sample store. Most of the things are working fine excpt when i go to Admin the page diplays without any issue ( I had to fix few things ) but when I click on the option in the page all I get is "Page not found" If you want you can go to the bellow site and take a look http://www.verdacominc.com/catalog/admin/ Can anyone help me on this how to fix it ? Please thanks Link to comment Share on other sites More sharing options...
mtechama Posted August 2, 2006 Share Posted August 2, 2006 I need help here; I followed exactly every single step when I installed the sample store. Most of the things are working fine excpt when i go to Admin the page diplays without any issue ( I had to fix few things ) but when I click on the option in the page all I get is "Page not found" If you want you can go to the bellow site and take a look http://www.verdacominc.com/catalog/admin/ Can anyone help me on this how to fix it ? Please thanks one thing is did you set your /admin/includes/configure.php right? Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP! Link to comment Share on other sites More sharing options...
humtum Posted August 2, 2006 Author Share Posted August 2, 2006 I guess so Here is the copy of my admin configure.php define('HTTP_SERVER', ''); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', ''); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // 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) define('DIR_WS_ADMIN', '/admin/'); define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); define('DIR_WS_CATALOG', '/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/'); // define our database connection define('DB_SERVER', 'homeserver'); define('DB_SERVER_USERNAME', 'xxxxxx'); define('DB_SERVER_PASSWORD', 'xxxxxx'); define('DB_DATABASE', 'storeone'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); ?> Link to comment Share on other sites More sharing options...
mtechama Posted August 2, 2006 Share Posted August 2, 2006 change this: define('HTTP_SERVER', ''); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', ''); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module to This: define('HTTP_SERVER', 'http://www.yourdomain.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.yourdomain.com'); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP! Link to comment Share on other sites More sharing options...
humtum Posted August 2, 2006 Author Share Posted August 2, 2006 Thanks for helping me out :) Done that same result : define('HTTP_SERVER', 'http://www.verdacominc.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.verdacominc.com'); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // 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) define('DIR_FS_DOCUMENT_ROOT', "/WebSites/StoreOne/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) Link to comment Share on other sites More sharing options...
mtechama Posted August 2, 2006 Share Posted August 2, 2006 Thanks for helping me out :)Done that same result : define('HTTP_SERVER', 'http://www.verdacominc.com'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.verdacominc.com'); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // 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) define('DIR_FS_DOCUMENT_ROOT', "/WebSites/StoreOne/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) I just realize something try this: define('HTTP_SERVER', 'http://www.verdacominc.com/catalog/'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.verdacominc.com/catalog/'); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP! Link to comment Share on other sites More sharing options...
humtum Posted August 2, 2006 Author Share Posted August 2, 2006 You da man :) After making the changes you suggested it seems to be working. I will go through it and probably ask you few more questions if you dont mind :) Link to comment Share on other sites More sharing options...
mtechama Posted August 2, 2006 Share Posted August 2, 2006 You da man :) After making the changes you suggested it seems to be working. I will go through it and probably ask you few more questions if you dont mind :) your main store isn't working can you post (catalog)/includes/configure.php? Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP! Link to comment Share on other sites More sharing options...
humtum Posted August 2, 2006 Author Share Posted August 2, 2006 please give me some time as I'm getting off from school. It will probably take me 2 hours to get home ( Highway traffic ) . Once I get home i will send you the config. Thanks a lot anyway for your help Link to comment Share on other sites More sharing options...
mtechama Posted August 2, 2006 Share Posted August 2, 2006 please give me some time as I'm getting off from school. It will probably take me 2 hours to get home ( Highway traffic ) . Once I get home i will send you the config. Thanks a lot anyway for your help No Prob. Wade Morris Amarillo, Texas Before you do any changes on your site you need to do BACKUP! BACKUP! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.