Guest Posted December 20, 2005 Posted December 20, 2005 When I go to my admin/index.php page and click on a link...like Configuration, I get a 404 Error & the following link - mydomain.com/admin/FILENAME_CONFIGURATION?selected_box=configuration&gID=1 I installed the software in my root directory rather than in /catalog/. Thanks for the help.
tina_boots Posted December 20, 2005 Posted December 20, 2005 When I go to my admin/index.php page and click on a link...like Configuration, I get a 404 Error & the following link - mydomain.com/admin/FILENAME_CONFIGURATION?selected_box=configuration&gID=1 I installed the software in my root directory rather than in /catalog/. Thanks for the help. Make sure that you have your paths defined correctly in your configure.php file. It appears its not finding your filenames.php file where it expects that it will be. Be well, Tina If you're not having fun you're not doing it right Teach a person to fish rather than give them a loaf of bread or however that saying goes.
Guest Posted December 20, 2005 Posted December 20, 2005 Thanks for the reply Tina. Is that the /catalog/includes/configure.php or the /admin/configuration.php?
tina_boots Posted December 20, 2005 Posted December 20, 2005 Thanks for the reply Tina. Is that the /catalog/includes/configure.php or the /admin/configuration.php? It would be in your admin area, however double check the one in your front end area as well, just to ensure that everything is in its proper place. Tina If you're not having fun you're not doing it right Teach a person to fish rather than give them a loaf of bread or however that saying goes.
Guest Posted December 20, 2005 Posted December 20, 2005 Not sure what I am supposed to be looking for in the configure.php file. I pasted my /catalog/includes/configure.php file below. <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://infinitelite.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://secure14.appliedi.net'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'infinitelite.com'); define('HTTPS_COOKIE_DOMAIN', 'https://secure14.appliedi.net/inflite/'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', 'https://secure14.appliedi.net/inflite/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/inflite/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', 'D:/webppliance/conf/domains/inflite/Inetpub/wwwroot/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', '********'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', '******'); define('DB_SERVER_PASSWORD', '******'); define('DB_DATABASE', '******'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?>
Guest Posted December 20, 2005 Posted December 20, 2005 and here is my /catalog/admin/includes/configure.php file <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://infinitelite.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://infinitelite.com'); define('HTTPS_CATALOG_SERVER', 'https://secure14.appliedi.net'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', 'D:/webppliance/conf/domains/inflite/Inetpub/wwwroot/catalog/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required define('DIR_FS_ADMIN', 'D:/webppliance/conf/domains/inflite/Inetpub/wwwroot/catalog/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/catalog/'); // absolute path required define('DIR_FS_CATALOG', 'D:/webppliance/conf/domains/inflite/Inetpub/wwwroot/catalog/'); // absolute path required 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/');
Guest Posted December 20, 2005 Posted December 20, 2005 do I need to include other information for you to get an idea of what I am doing wrong?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.