BuddahBoy Posted November 8, 2005 Share Posted November 8, 2005 Greetings - double checked all the install and it seems to be okay - - get this message on the front page: Fatal error: Call to a member function on a non-object in /home/xxxxxxx/public_html/xxxxxxxxx/catalog/includes/column_right.php on line 14 Install states: STEP 10 - Edit catalog/includes/column_right.php Find this code: require(DIR_WS_BOXES . 'shopping_cart.php'); Below that code ADD this: if($wishList->count_wishlist() != '0') { require(DIR_WS_BOXES . 'wishlist.php'); } My column_right is now: */ require(DIR_WS_BOXES . 'shopping_cart.php'); if($wishList->count_wishlist() != '0') { require(DIR_WS_BOXES . 'wishlist.php'); } if (isset($HTTP_GET_VARS['products_id'])) include(DIR_WS_BOXES . 'manufacturer_info.php'); if (tep_session_is_registered('customer_id')) include(DIR_WS_BOXES . 'order_history.php'); if (isset($HTTP_GET_VARS['products_id'])) { if (tep_session_is_registered('customer_id')) { $check_query = tep_db_query("select count(*) as count from " . TABLE_CUSTOMERS_INFO . " where customers_info_id = '" . (int)$customer_id . "' and global_product_notifications = '1'"); $check = tep_db_fetch_array($check_query); if ($check['count'] > 0) { include(DIR_WS_BOXES . 'best_sellers.php'); } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'best_sellers.php'); } if (isset($HTTP_GET_VARS['products_id'])) { if (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND) include(DIR_WS_BOXES . 'tell_a_friend.php'); } else { include(DIR_WS_BOXES . 'specials.php'); } require(DIR_WS_BOXES . 'reviews.php'); if (substr(basename($PHP_SELF), 0, 8) != 'checkout') { include(DIR_WS_BOXES . 'languages.php'); include(DIR_WS_BOXES . 'currencies.php'); } ?> Sure would appreciate any help at all - thank you thank you thank you Quote Link to comment Share on other sites More sharing options...
WKD2 Posted December 23, 2005 Share Posted December 23, 2005 getting same problem. help please. Quote Link to comment Share on other sites More sharing options...
WKD2 Posted December 23, 2005 Share Posted December 23, 2005 Found fix......Deleted wishlist! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.