[PrestaShopDatabaseException]

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'product_shop` LEFT JOIN `ps_product` p ON (p.`id_product` = produ...' at line 36<br /><br /><pre> SELECT p.*, product_shop.*, image_shop.`id_image` id_image, stock.`out_of_stock`, IFNULL( stock.`quantity`, 0 ) AS quantity FROM ( SELECT product_shop.*, IFNULL(product_attribute_shop.`id_product_attribute`, 0) AS id_product_attribute, product_attribute_shop.`minimal_quantity` AS product_attribute_minimal_quantity, pl.`description`, pl.`description_short`, pl.`available_now`, pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, DATEDIFF(product_shop.`date_add`, DATE_SUB("2024-03-19 00:00:00", INTERVAL 20 DAY)) > 0 AS new, (product_shop.`price` + IFNULL(product_attribute_shop.`price`, 0)) AS orderprice ,IF(product_feature_value.id_feature_value = 554, 1, IF(product_feature_value.id_feature_value = 550, 2, IF(product_feature_value.id_feature_value = 552, 3, IF(product_feature_value.id_feature_value = 551, 4, 0) ) ) ) AS feature_order FROM `ps_category_product` cp STRAIGHT_JOIN ps_product_shop product_shop ON (product_shop.id_product = cp.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_product_attribute_shop` product_attribute_shop ON (product_shop.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.`id_shop`=1) LEFT JOIN `ps_category` c ON (c.`id_category` = cp.`id_category` AND c.`nleft` >= 593 AND c.`nright` <= 594) LEFT JOIN `ps_product_lang` pl ON (product_shop.`id_product` = pl.`id_product` AND pl.`id_lang` = 1 AND pl.id_shop = 1 ) LEFT JOIN `ps_feature_product` product_feature ON (product_shop.`id_product` = product_feature.`id_product`) LEFT JOIN `ps_feature_value` product_feature_value ON (product_feature.`id_feature_value` = product_feature_value.`id_feature_value`) WHERE c.`id_category` > 0 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") GROUP BY cp.`id_product` ORDER BY product_shop.`id_product ASC LIMIT 0,18) AS `product_shop` LEFT JOIN `ps_product` p ON (p.`id_product` = product_shop.`id_product`) LEFT JOIN `ps_image_shop` image_shop ON (image_shop.`id_product` = product_shop.`id_product` AND image_shop.`cover`=1 AND image_shop.`id_shop`=1) LEFT JOIN ps_stock_available stock ON (stock.id_product = `product_shop`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 ) </pre>
at line 769 in file classes/db/Db.php

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }