stefsworld Posted March 14, 2008 Posted March 14, 2008 Warning: require(includes/application_top.php) [function.require]: failed to open stream: No such file or directory in /home/estefcom/public_html/index.php on line 3 Warning: require(includes/application_top.php) [function.require]: failed to open stream: No such file or directory in /home/estefcom/public_html/index.php on line 3 Fatal error: require() [function.require]: Failed opening required 'includes/application_top.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/estefcom/public_html/index.php on line 3 can anyone let me know what i need to do? many thanks stefan
Guest Posted March 15, 2008 Posted March 15, 2008 Can you post your catalog/includes/configure.php file but do NOT include the bottom part with the database information.
stefsworld Posted March 15, 2008 Author Posted March 15, 2008 is this the one? <?php /* Ebook Webstore http://www.e-stef.com */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) // add your database and website details to the variables below define('', ''); // your username that you use to log into your web server define('', ''); // your password that you use to log into your web server define('mydatabasename', ''); // your database define('DIR_FS_CATALOG', '/home/username/public_html/'); define('HTTP_SERVER', 'http://www.e-stef.com'); define('HTTP_COOKIE_DOMAIN', '.e-stef.com'); // do not include the www define('DB_SERVER', 'localhost'); // you do not need to change anything below define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('HTTPS_COOKIE_DOMAIN', ''); 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('HTTPS_SERVER', ''); define('ENABLE_SSL', false); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); ?>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.