fhoe Posted November 15, 2002 Posted November 15, 2002 At "Add a Quickie!" Component, I always have this error message, Error! Unable to determine the page link! also the "Language" Component. What is going on? I already configure application_top.php to the proper server name and paths. my setup is 1. Microsoft Windows XP 2. Apache 1.3.27 3. PHP 4.2.3 Thanks
Jan0815 Posted November 15, 2002 Posted November 15, 2002 You are using version 2.1 of osCommerce - consider using a 2.2-CVS snapshot instead. It should solve your problems. If you want to use 2.1 you should provide us with more details. I once had 2.1 running in a similar environment and experienced no problems. Could you show us the relevant part (the first 30 lines) of your application_top.php so we can take a look? HTH You can't have everything. That's why trains have difficulty crossing oceans, and hippos did not adapt to fly. -- from the OpenBSD mailinglist.
fhoe Posted November 16, 2002 Author Posted November 16, 2002 You are correct, I'm using version 2.1. here is the first 30 lines... thanks for your help. <? if (file_exists('includes/local/configure.php')) { include('includes/local/configure.php'); if ((!defined(CONFIGURE_STATUS_COMPLETED)) && (CONFIGURE_STATUS_COMPLETED != '1')) { // File not read properly die('File configure.php was not found or was improperly formatted, contact webmaster of this domain.<br>The configuration file in catalog/includes/local/configure.php was not properly formatted.<br> <br>Please add the following to that file:<br> <br>define('CONFIGURE_STATUS_COMPLETED', '1');'); } } // for internal use until final v1.0 version is ready define('PROJECT_VERSION', 'Preview Release 2.1'); // define our webserver variables // FS = Filesystem (physical) // WS = Webserver (virtual) define('HTTP_SERVER', 'http://192.168.1.2'); define('HTTPS_SERVER', 'https://192.168.1.2'); define('ENABLE_SSL', 1); // ssl server enable(1)/disable(0) define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT . '/'); define('DIR_FS_LOGS', '/progra~1/apache~1/apache/logs/'); define('DIR_WS_CATALOG', '/osc/catalog/'); define('DIR_WS_IMAGES', '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_PAYMENT_MODULES', DIR_WS_MODULES . 'payment/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); // default values
Recommended Posts
Archived
This topic is now archived and is closed to further replies.