Disk full (/tmp/#sql-temptable-a4af6-748f0-11db8a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")<br /><br /><pre>SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, IFNULL(product_attribute_shop.`id_product_attribute`,0) id_product_attribute
, pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`,
pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`, image_shop.`id_image` id_image, il.`legend`, m.`name` AS manufacturer_name,
DATEDIFF(
product_shop.`date_add`,
DATE_SUB(
"2026-04-28 00:00:00",
INTERVAL 20 DAY
)
) > 0 AS new FROM `prstshp_product` p
INNER JOIN prstshp_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)LEFT JOIN `prstshp_product_attribute_shop` product_attribute_shop
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=1)
LEFT JOIN `prstshp_product_lang` pl
ON (p.`id_product` = pl.`id_product` AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `prstshp_image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=1)
LEFT JOIN `prstshp_image_lang` il
ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1)
LEFT JOIN `prstshp_manufacturer` m
ON (m.`id_manufacturer` = p.`id_manufacturer`)
LEFT JOIN prstshp_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )JOIN `prstshp_category_product` cp ON (p.id_product = cp.id_product)JOIN `prstshp_category_group` cg ON (cp.`id_category` = cg.`id_category` AND cg.`id_group` =1)JOIN `prstshp_category` ca ON cp.`id_category` = ca.`id_category` AND ca.`active` = 1
WHERE p.`id_manufacturer` = 108
AND product_shop.`active` = 1
AND product_shop.`visibility` IN ("both", "catalog")
GROUP BY p.id_product
ORDER BY pl.`name` asc
LIMIT 12,12</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. }
380. $this->result = $this->_query($sql);
381. }
382. }
383.
384. if (_PS_DEBUG_SQL_) {
385. $this->displayError($sql);
386. }
387.
388. return $this->result;
389. }
390.
608. }
609.
610. return $this->execute($sql, $use_cache);
611. }
612.
613. $this->result = $this->query($sql);
614.
615. if (!$this->result) {
616. $result = false;
617. } else {
618. if (!$array) {
486. ' . ($front ? ' AND product_shop.`visibility` IN ("both", "catalog")' : '') . '
487. GROUP BY p.id_product
488. ORDER BY ' . $alias . '`' . bqSQL($orderBy) . '` ' . pSQL($orderWay) . '
489. LIMIT ' . (((int) $p - 1) * (int) $n) . ',' . (int) $n;
490.
491. $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
492.
493. if (!$result) {
494. return false;
495. }
496.
66. $context->getIdLang(),
67. $query->getPage(),
68. $query->getResultsPerPage(),
69. $query->getSortOrder()->toLegacyOrderBy(),
70. $query->getSortOrder()->toLegacyOrderWay(),
71. $type !== 'products'
72. );
73. }
74.
75. /**
76. * @param ProductSearchContext $context
80. */
81. public function runQuery(
82. ProductSearchContext $context,
83. ProductSearchQuery $query
84. ) {
85. $products = $this->getProductsOrCount($context, $query, 'products');
86. $count = $this->getProductsOrCount($context, $query, 'count');
87.
88. $result = new ProductSearchResult();
89.
90. if (!empty($products)) {
302.
303. // We're ready to run the actual query!
304.
305. /** @var ProductSearchResult $result */
306. $result = $provider->runQuery(
307. $context,
308. $query
309. );
310.
311. if (Configuration::get('PS_CATALOG_MODE') && !Configuration::get('PS_CATALOG_MODE_WITH_PRICES')) {
312. $this->disablePriceControls($result);
575. header('Content-Type: application/json');
576. $this->ajaxRender(json_encode($this->getAjaxProductSearchVariables()));
577.
578. return;
579. } else {
580. $variables = $this->getProductSearchVariables();
581. $this->context->smarty->assign([
582. 'listing' => $variables,
583. ]);
584. $this->setTemplate($template, $params, $locale);
585. }
83. ],
84. 'Shop.Theme.Catalog'
85. );
86. $this->doProductSearch(
87. 'catalog/listing/manufacturer',
88. ['entity' => 'manufacturer', 'id' => $this->manufacturer->id]
89. );
90. } else {
91. $this->assignAll();
92. $this->label = $this->trans(
93. 'List of all brands',
301. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) {
302. $this->initHeader();
303. }
304.
305. if ($this->viewAccess()) {
306. $this->initContent();
307. } else {
308. $this->errors[] = $this->trans('Access denied.', [], 'Admin.Notifications.Error');
309. }
310.
311. if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className))) {
513. if (isset($params_hook_action_dispatcher)) {
514. Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
515. }
516.
517. // Running controller
518. $controller->run();
519.
520. // Execute hook dispatcher after
521. if (isset($params_hook_action_dispatcher)) {
522. Hook::exec('actionDispatcherAfter', $params_hook_action_dispatcher);
523. }
23. * @copyright Since 2007 PrestaShop SA and Contributors
24. * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
25. */
26.
27. require dirname(__FILE__).'/config/config.inc.php';
28. Dispatcher::getInstance()->dispatch();