Guest Posted August 2, 2006 Share Posted August 2, 2006 Went to publish a site today. We moved the os site from a subdirectory to the root level. Changed the configure files in both admin and includes. Admin works perfectly fine. But no products show up on the site. The product titles show up, but no listing of products. For manufacturers, the manufacturer name and discription appear but no listing of products for that manufacturer. Here is a copy of my 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://www.neuburgwinecompany.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', ''); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.neuburgwinecompany.com'); define('HTTPS_COOKIE_DOMAIN', 'www.neuburgwinecompany.com'); 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('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/var/www/vhosts/neuburgwinecompany.com/httpdocs/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); I left of the database info which is the same as the admin configure file. I believe the error is in this statement from index.php, that it is not functioning properly <td><?php include(DIR_WS_MODULES . FILENAME_PRODUCT_LISTING); ?></td> I tried to hardcode the direct path and it didn't help. If anyone has suggestions I would appreciate it Link to comment Share on other sites More sharing options...
Guest Posted August 3, 2006 Share Posted August 3, 2006 I found out what the problem was, it was this contrib Quantity Price Breaks Per Product, It only affected the catalog side not the admin. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.