eddyvlad Posted July 29, 2005 Share Posted July 29, 2005 This is weird. Everything on my site works.... I really mean everything. Except when I click catalog -> categories/products. My firefox browser prompt "The document contains no data". It works on the production server but it doesn't work on my localhost, runnin on apache. Couldn't be configure.php coz my whole site works except categories/products (categories.php) Just in case, I post my configure.php here:- define('HTTP_SERVER', 'http://10.0.0.4'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://10.0.0.4'); define('HTTPS_CATALOG_SERVER', 'http://10.0.0.4'); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', 'C:/apache2triad/htdocs/bravogue/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/bravogue/admin2/'); // absolute path required define('DIR_FS_ADMIN', '/htdocs/bravogue/admin2/'); // absolute pate required define('DIR_WS_CATALOG', '/bravogue/'); // absolute path required define('DIR_FS_CATALOG', '/htdocs/bravogue/'); // 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/'); What could be wrong? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.