Code: Select all
PHP Deprecated: Creation of dynamic property wishlist::$listID is deprecated in /includes/system/versioned/1.0.8.3/session.php on line 55Code: Select all
PHP Deprecated: Creation of dynamic property wishlist::$listID is deprecated in /includes/system/versioned/1.0.8.3/session.php on line 55Code: Select all
class wishlist {
public $contents, $total, $wishlistID, $content_type, $listID;
public function __construct() {
$this->reset();
}Code: Select all
PHP Warning: Undefined array key "wishlist" in /home/XXXX/public_html/includes/actions/wishlist_all_to_cart.php on line 21
PHP Fatal error: Uncaught Error: Call to a member function get_products() on null in /home/XXXX/public_html/includes/actions/wishlist_all_to_cart.php:21
Stack trace:
#0 /home/XXXX/public_html/includes/classes/actions.php(19): Phoenix\Actions\wishlist_all_to_cart::execute()
#1 /home/XXXX/public_html/includes/system/segments/application/parse_actions.php(32): Actions::parse('wishlist_all_to...')
#2 /home/XXXX/public_html/includes/application_top.php(42): require('/home/XXXX/p...')
#3 /home/XXXX/public_html/wishlist.php(12): require('/home/XXXX/p...')
#4 {main}
thrown in /home/XXXX/public_html/includes/actions/wishlist_all_to_cart.php on line 21We are getting the exact same error.Omar_one wrote: ↑Fri Nov 22, 2024 10:09 am Hello,
we have this on error_log fileit maybe come from out of stock products which there are on the wishlist ??Code: Select all
PHP Warning: Undefined array key "wishlist" in /home/XXXX/public_html/includes/actions/wishlist_all_to_cart.php on line 21 PHP Fatal error: Uncaught Error: Call to a member function get_products() on null in /home/XXXX/public_html/includes/actions/wishlist_all_to_cart.php:21 Stack trace: #0 /home/XXXX/public_html/includes/classes/actions.php(19): Phoenix\Actions\wishlist_all_to_cart::execute() #1 /home/XXXX/public_html/includes/system/segments/application/parse_actions.php(32): Actions::parse('wishlist_all_to...') #2 /home/XXXX/public_html/includes/application_top.php(42): require('/home/XXXX/p...') #3 /home/XXXX/public_html/wishlist.php(12): require('/home/XXXX/p...') #4 {main} thrown in /home/XXXX/public_html/includes/actions/wishlist_all_to_cart.php on line 21
Br
Omar
Code: Select all
$GLOBALS['db']->query("INSERT INTO customers_wishlist (customers_id, products_id, quantity, customers_wishlist_date_added) VALUES (" . (int)$_SESSION['customer_id'] . ", '" . $GLOBALS['db']->escape($products_id_string) . "', " . (int)$qty . ", '" . date('Ymd') . "')");
Code: Select all
$GLOBALS['db']->query("INSERT INTO customers_wishlist (customers_id, products_id, quantity, date_added) VALUES (" . (int)$_SESSION['customer_id'] . ", '" . $GLOBALS['db']->escape($products_id_string) . "', " . (int)$qty . ", '" . date('Ymd') . "')");
burt wrote: ↑Tue May 06, 2025 12:00 pm See what is in the DB;
1. SELECT * FROM configuration WHERE LOWER(configuration_key) LIKE '%wishlist%';
This will show what modules are still installed.
and
2. SELECT * FROM configuration WHERE LOWER(configuration_value) LIKE '%wishlist%';
This will show where those modules are installed.