SELECT SQL_NO_CACHE COUNT(DISTINCT `id_product`) AS total
FROM
ps_product_shop AS product_shop
WHERE 1
-- AND product_shop.`visibility` IN ("both", "catalog")
AND product_shop.`active` = 1
AND product_shop.id_product IN (SELECT
cp.`id_product`
FROM
ps_category_product AS cp
WHERE cp.id_category = 11681) LIMIT 1 |
36267
ms
|
3446 |
|
|
/override/classes/Category.php:78
/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:114<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) AS quantity, 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`, image_shop.`id_image` id_image,
il.`legend` as legend, m.`name` AS manufacturer_name, cl.`name` AS category_default,
DATEDIFF(product_shop.`date_add`, DATE_SUB("2025-04-07 00:00:00",
INTERVAL 20000 DAY)) > 0 AS new, product_shop.price AS orderprice
FROM `ps_category_product` cp
LEFT JOIN `ps_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_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 ps_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 )
LEFT JOIN `ps_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 2 AND cl.id_shop = 1 )
LEFT JOIN `ps_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 2 AND pl.id_shop = 1 )
LEFT JOIN `ps_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 `ps_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 2)
LEFT JOIN `ps_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
WHERE product_shop.`id_shop` = 1 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") AND cp.`id_category` IN ( 11681 )
LIMIT 11 |
36037
ms
|
3446 |
|
|
/override/classes/Category.php:180
/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.id_category, cp.id_product
FROM
ps_category AS c
LEFT JOIN
ps_category_product AS cp ON (c.id_category = cp.id_category)
LEFT JOIN
ps_product_shop AS ps ON (cp.id_product = ps.id_product)
WHERE
c.nleft >= 1816 AND c.nright <= 1817
AND ps.active
GROUP BY cp.id_product |
26565
ms
|
53467 |
Yes
|
Yes
|
/modules/ps_categoryproducts/ps_categoryproducts.php:285
/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module
FROM `ps_module` m
INNER JOIN ps_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 1 AND module_shop.enable_device & 1)
INNER JOIN `ps_module_shop` `ms` ON ms.`id_module` = m.`id_module`
INNER JOIN `ps_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `ps_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `ps_module_group` `mg` ON mg.`id_module` = m.`id_module`
WHERE (h.`name` != "paymentOptions") AND (hm.`id_shop` = 1) AND (mg.id_shop = 1 AND mg.`id_group` IN (1))
GROUP BY hm.id_hook, hm.id_module
ORDER BY hm.`position` |
11473
ms
|
174 |
Yes
|
Yes
|
/classes/Hook.php:1183
/classes/Hook.php:731<br>/classes/Hook.php:815<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`name`, cl.`id_lang`, IF(cl.`id_lang` IS NULL, c.`value`, cl.`value`) AS value, c.id_shop_group, c.id_shop
FROM `ps_configuration` c
LEFT JOIN `ps_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
9190
ms
|
1095 |
|
|
/classes/Configuration.php:160
/classes/Configuration.php:209<br>/classes/Configuration.php:297<br>/classes/shop/Shop.php:384<br>/config/config.inc.php:144<br>/index.php:38
|
UPDATE `ps_jm_pagecache_contexts` SET count_bot=count_bot+1
WHERE id=3; |
8642
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:710
/modules/jprestaspeedpack/classes/PageCacheDAO.php:442<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2370<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
6678
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/ets_ordermanager/ets_ordermanager.php:180<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`passwd`
FROM `ps_customer` c
WHERE (c.`email` = '[email protected]') AND (c.`id_shop` IN (1)) AND (c.`is_guest` = 0) AND (c.`deleted` = 0) LIMIT 1 |
6549
ms
|
1 |
|
|
/classes/Customer.php:500
/modules/jprestaspeedpack/classes/JprestaCustomer.php:93<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1457<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:514<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_group` a
LEFT JOIN `ps_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 1
WHERE (a.`id_group` = 1) LIMIT 1 |
6296
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Group.php:81<br>/classes/Group.php:397<br>/classes/Cart.php:248<br>/classes/Cart.php:221<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1473<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:514<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "bvkseodispatcher" LIMIT 1 |
5754
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2305<br>/modules/jprestaspeedpack/jprestaspeedpack.php:184<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_hook_module_exceptions`
WHERE `id_shop` IN (1) |
5535
ms
|
1 |
|
|
/classes/module/Module.php:2239
/classes/Hook.php:889<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `ps_hook` |
4977
ms
|
893 |
|
|
/classes/Hook.php:1243
/classes/Hook.php:222<br>/classes/Hook.php:824<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE "thumb" FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = "magicbook_co" AND TABLE_NAME = "ps_psblog_blog" AND COLUMN_NAME = "thumb" |
4958
ms
|
0 |
|
|
/modules/psblog/psblog.php:60
:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`name`, cl.`id_lang`, IF(cl.`id_lang` IS NULL, c.`value`, cl.`value`) AS value, c.id_shop_group, c.id_shop
FROM `ps_configuration` c
LEFT JOIN `ps_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
4889
ms
|
1095 |
|
|
/classes/Configuration.php:160
/override/classes/Configuration.php:11<br>/modules/pm_advancedsearch4/classes/As4SearchEngine.php:2301<br>/modules/pm_advancedsearch4/pm_advancedsearch4.php:3901<br>/modules/pm_advancedsearch4/pm_advancedsearch4.php:3831<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
4666
ms
|
109 |
|
|
/classes/module/Module.php:340
/modules/ets_ordermanager/ets_ordermanager.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_jm_pagecache` WHERE ((id_controller=1 AND last_gen < (NOW() - INTERVAL 1296000 SECOND)) OR (id_controller=2 AND last_gen < (NOW() - INTERVAL 691200 SECOND)) OR (id_controller=3 AND last_gen < (NOW() - INTERVAL 1296000 SECOND)) OR (id_controller=4 AND last_gen < (NOW() - INTERVAL 691200 SECOND)) OR (id_controller=5 AND last_gen < (NOW() - INTERVAL 691200 SECOND)) OR (id_controller=6 AND last_gen < (NOW() - INTERVAL 691200 SECOND)) OR (id_controller=7 AND last_gen < (NOW() - INTERVAL 691200 SECOND)) OR (id_controller=8 AND last_gen < (NOW() - INTERVAL 691200 SECOND)) OR id_controller=9 OR (id_controller=10 AND last_gen < (NOW() - INTERVAL 691200 SECOND)) OR (id_controller=11 AND last_gen < (NOW() - INTERVAL 691200 SECOND))) ORDER BY last_gen ASC LIMIT 2 |
4666
ms
|
16 |
Yes
|
|
/modules/jprestaspeedpack/classes/PageCacheDAO.php:335
/modules/jprestaspeedpack/jprestaspeedpack.php:4023<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1332<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:730<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE h.id_hook, h.name as h_name, title, description, h.position, hm.position as hm_position, m.id_module, m.name, m.active
FROM `ps_hook_module` hm
STRAIGHT_JOIN `ps_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `ps_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
4629
ms
|
572 |
|
|
/classes/Hook.php:504
/classes/Hook.php:544<br>/classes/tax/TaxManagerFactory.php:67<br>/classes/tax/TaxManagerFactory.php:46<br>/classes/Product.php:6793<br>/classes/Product.php:733<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE domain, domain_ssl
FROM ps_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
4539
ms
|
1 |
|
|
/classes/shop/ShopUrl.php:182
/classes/shop/ShopUrl.php:198<br>/classes/Tools.php:348<br>/classes/Link.php:66<br>/config/config.inc.php:278<br>/index.php:38
|
SELECT SQL_NO_CACHE *
FROM `ps_country` a
LEFT JOIN `ps_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 2
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 214) LIMIT 1 |
4395
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/config/config.inc.php:173<br>/index.php:38
|
SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `ps_lang` l
JOIN ps_lang_shop lang_shop ON (lang_shop.id_lang = l.id_lang AND lang_shop.id_shop = 1)
WHERE l.`active` = 1 LIMIT 1 |
4351
ms
|
9 |
|
|
/classes/Language.php:1198
/classes/Language.php:1502<br>/classes/Dispatcher.php:541<br>/classes/Dispatcher.php:238<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE cl.*,c.*, cl.`name` country, z.`name` zone
FROM `ps_country` c INNER JOIN ps_country_shop country_shop
ON (country_shop.id_country = c.id_country AND country_shop.id_shop = 1)
LEFT JOIN `ps_country_lang` cl ON (c.`id_country` = cl.`id_country` AND cl.`id_lang` = 2)
LEFT JOIN `ps_zone` z ON (z.`id_zone` = c.`id_zone`)
WHERE 1
ORDER BY cl.name ASC |
4245
ms
|
241 |
Yes
|
|
/classes/Country.php:147
/modules/ps_emailsubscription/ps_emailsubscription.php:123<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:951<br>/tools/profiling/Controller.php:48<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) AS quantity, IFNULL(product_attribute_shop.id_product_attribute, 0) AS id_product_attribute,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, pl.`available_now`,
pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, image_shop.`id_image` id_image,
il.`legend` as legend, m.`name` AS manufacturer_name, cl.`name` AS category_default,
DATEDIFF(product_shop.`date_add`, DATE_SUB("2025-04-07 00:00:00",
INTERVAL 20000 DAY)) > 0 AS new, product_shop.price AS orderprice,
ps.quantity AS sales
FROM `ps_category_product` cp
LEFT JOIN `ps_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_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 ps_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 )
LEFT JOIN `ps_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 2 AND cl.id_shop = 1 )
LEFT JOIN `ps_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 2 AND pl.id_shop = 1 )
LEFT JOIN `ps_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 `ps_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 2)
LEFT JOIN `ps_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN ps_product_sale ps ON p.`id_product` = ps.`id_product`
WHERE product_shop.`id_shop` = 1
AND p.`id_product` IN (18087,11378,799784) AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") |
4139
ms
|
3 |
|
|
/modules/authorbooks/authorbooks.php:336
/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_jm_pagecache_sp` WHERE (date_from >= '2025-04-07 11:24:00' AND date_from <= '2025-04-07 13:24:00') OR (date_to >= '2025-04-07 11:24:00' AND date_to <= '2025-04-07 13:24:00'); |
4136
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:746
/modules/jprestaspeedpack/classes/JprestaUtils.php:916<br>/modules/jprestaspeedpack/classes/PageCacheDAO.php:370<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2399<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE l.*, ls.`id_shop`
FROM `ps_lang` l
LEFT JOIN `ps_lang_shop` ls ON (l.id_lang = ls.id_lang) |
4129
ms
|
3 |
|
|
/classes/Language.php:1049
/config/config.inc.php:170<br>/index.php:38
|
SELECT SQL_NO_CACHE *
FROM `ps_lang` a
LEFT JOIN `ps_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 2) LIMIT 1 |
4075
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/config/config.inc.php:238<br>/index.php:38
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ets_payment_with_fee" LIMIT 1 |
4018
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2305<br>/modules/ets_ordermanager/ets_ordermanager.php:177<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
3954
ms
|
109 |
|
|
/classes/module/Module.php:340
/modules/anchorfeatures/anchorfeatures.php:48<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, 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, cl.`name` AS category_default, IFNULL(product_attribute_shop.id_product_attribute, 0) id_product_attribute,
DATEDIFF(
p.`date_add`,
DATE_SUB(
"2025-04-07 00:00:00",
INTERVAL 20000 DAY
)
) > 0 AS new
FROM `ps_accessory`
LEFT JOIN `ps_product` p ON p.`id_product` = `id_product_2`
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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 `ps_product_lang` pl ON (
p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 2 AND pl.id_shop = 1
)
LEFT JOIN `ps_category_lang` cl ON (
product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 2 AND cl.id_shop = 1
)
LEFT JOIN `ps_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 `ps_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 2)
LEFT JOIN `ps_manufacturer` m ON (p.`id_manufacturer`= m.`id_manufacturer`)
LEFT JOIN ps_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 )
WHERE `id_product_1` = 796308 AND product_shop.`active` = 1 AND product_shop.`visibility` != 'none'
GROUP BY product_shop.id_product |
3794
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4652
/controllers/front/ProductController.php:358<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 1 LIMIT 1 |
3778
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/classes/Tools.php:723<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3774<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1921<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1838<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `ps_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `ps_hook_alias` ha
INNER JOIN `ps_hook` h ON ha.name = h.name |
3736
ms
|
0 |
|
|
/classes/Hook.php:1243
/classes/Hook.php:222<br>/classes/tax/TaxManagerFactory.php:67<br>/classes/tax/TaxManagerFactory.php:46<br>/classes/Product.php:6793<br>/classes/Product.php:733<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
3575
ms
|
109 |
|
|
/classes/module/Module.php:340
/modules/pm_advancedsearch4/AdvancedSearchCoreClass.php:48<br>/modules/pm_advancedsearch4/pm_advancedsearch4.php:110<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
3445
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:1997<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1835<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
3428
ms
|
109 |
|
|
/classes/module/Module.php:340
/modules/psblog/psblog.php:53<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
3283
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Tools.php:719<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3774<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1921<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1838<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(*)
FROM `ps_customization_field`
WHERE `id_product` = 796308 |
2906
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:746
/modules/jprestaspeedpack/classes/JprestaUtils.php:916<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1982<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1843<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `ps_meta` m
LEFT JOIN `ps_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
2885
ms
|
60 |
Yes
|
|
/classes/Dispatcher.php:643
/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_state` ORDER BY `name` ASC |
2774
ms
|
377 |
Yes
|
|
/classes/Country.php:154
/modules/ps_emailsubscription/ps_emailsubscription.php:123<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:951<br>/tools/profiling/Controller.php:48<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "autolanguagecurrency" LIMIT 1 |
2592
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1997<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1835<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT `id_product` FROM `ps_specific_price` WHERE `id_product` != 0 |
2546
ms
|
1897 |
|
|
/classes/SpecificPrice.php:295
/classes/SpecificPrice.php:345<br>/classes/SpecificPrice.php:533<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`passwd`
FROM `ps_customer` c
WHERE (c.`email` = '[email protected]') AND (c.`id_shop` IN (1)) AND (c.`is_guest` = 0) AND (c.`deleted` = 0) LIMIT 1 |
2480
ms
|
1 |
|
|
/classes/Customer.php:500
/modules/jprestaspeedpack/classes/JprestaCustomer.php:93<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2518<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(*) FROM (SELECT DISTINCT `id_product` FROM `ps_specific_price` WHERE `id_product` != 0 GROUP BY id_product ) AS counted LIMIT 1 |
2458
ms
|
3598609 |
|
|
/classes/SpecificPrice.php:287
/classes/SpecificPrice.php:345<br>/classes/SpecificPrice.php:533<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SHOW TABLES LIKE '%psblog_blog%' |
2199
ms
|
1 |
|
|
/modules/psblog/psblog.php:60
:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, agl.`public_name` AS public_group_name,
a.`id_attribute`, al.`name` AS attribute_name, a.`color` AS attribute_color, product_attribute_shop.`id_product_attribute`,
IFNULL(stock.quantity, 0) as quantity, product_attribute_shop.`price`, product_attribute_shop.`ecotax`, product_attribute_shop.`weight`,
product_attribute_shop.`default_on`, pa.`reference`, pa.`ean13`, pa.`mpn`, pa.`upc`, pa.`isbn`, product_attribute_shop.`unit_price_impact`,
product_attribute_shop.`minimal_quantity`, product_attribute_shop.`available_date`, ag.`group_type`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN ps_stock_available stock
ON (stock.id_product = `pa`.id_product AND stock.id_product_attribute = IFNULL(`pa`.id_product_attribute, 0) AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
LEFT JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = pa.`id_product_attribute`)
LEFT JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
LEFT JOIN `ps_attribute_group` ag ON (ag.`id_attribute_group` = a.`id_attribute_group`)
LEFT JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute`)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group`)
INNER JOIN ps_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 796308
AND al.`id_lang` = 2
AND agl.`id_lang` = 2
GROUP BY id_attribute_group, id_product_attribute
ORDER BY ag.`position` ASC, a.`position` ASC, agl.`name` ASC |
2060
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4562
/controllers/front/ProductController.php:586<br>/controllers/front/ProductController.php:423<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
FROM ps_shop_url su
LEFT JOIN ps_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'magicbook.com.ua' OR su.domain_ssl = 'magicbook.com.ua')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
1873
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:1350
/classes/shop/Shop.php:341<br>/config/config.inc.php:144<br>/index.php:38
|
SELECT SQL_NO_CACHE c.*, cl.`id_lang`, cl.`name`, cl.`description`, cl.`link_rewrite`, cl.`meta_title`, cl.`meta_keywords`, cl.`meta_description`
FROM `ps_category` c
INNER JOIN ps_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
LEFT JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND `id_lang` = 2 AND cl.id_shop = 1 )
LEFT JOIN `ps_category_group` cg ON (cg.`id_category` = c.`id_category`)
WHERE `id_parent` = 11681
AND `active` = 1
AND cg.`id_group` =1
GROUP BY c.`id_category`
ORDER BY `level_depth` ASC, category_shop.`position` ASC |
1719
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:923
/controllers/front/ProductController.php:836<br>/controllers/front/ProductController.php:321<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 336
ORDER BY f.position ASC |
1627
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1533
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE lower(name) as name
FROM `ps_hook` h
WHERE (h.active = 1) |
1505
ms
|
893 |
|
|
/classes/Hook.php:1283
/classes/Hook.php:786<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `ps_meta` m
LEFT JOIN `ps_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
1490
ms
|
60 |
Yes
|
|
/classes/Dispatcher.php:643
/classes/Dispatcher.php:249<br>/modules/jprestaspeedpack/classes/JprestaUtilsDispatcher.php:22<br>/modules/jprestaspeedpack/classes/JprestaUtils.php:91<br>/modules/jprestaspeedpack/classes/JprestaUtils.php:37<br>/modules/jprestaspeedpack/jprestaspeedpack.php:4005<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1332<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:730<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1455
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 344
ORDER BY f.position ASC |
1439
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 351
ORDER BY f.position ASC |
1435
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1389
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 324
LIMIT 1 |
1368
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *,
( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
ORDER BY `from_quantity` ASC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC |
1357
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:624
/controllers/front/ProductController.php:549<br>/controllers/front/ProductController.php:323<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 344) AND (b.`id_shop` = 1) LIMIT 1 |
1338
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 319
LIMIT 1 |
1305
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 336 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 336 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1302
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.*
FROM `ps_customer` c
WHERE (c.`email` = '[email protected]') AND (c.`id_shop` IN (1)) AND (c.`is_guest` = 0) AND (c.`deleted` = 0) LIMIT 1 |
1300
ms
|
1 |
|
|
/classes/Customer.php:528
/modules/jprestaspeedpack/classes/JprestaCustomer.php:93<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1457<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:514<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 329
LIMIT 1 |
1296
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 344 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 344 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1291
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 310
LIMIT 1 |
1284
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 796308
ORDER BY f.position ASC |
1278
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/controllers/front/ProductController.php:1125<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 351 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 351 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1270
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1257
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1255
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 329
ORDER BY f.position ASC |
1249
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`id_attribute_group`, al.`name` as `attribute`, agl.`name` as `group`,pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
LEFT JOIN `ps_product_attribute_combination` pac
ON (a.`id_attribute` = pac.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pac.`id_product_attribute` = pa.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
INNER JOIN ps_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = pac.id_attribute AND attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 796308 |
1233
ms
|
1 |
|
|
/classes/Product.php:7447
/controllers/front/ProductController.php:808<br>/controllers/front/ProductController.php:326<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 1 |
1213
ms
|
3 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Tools.php:719<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3774<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1921<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1838<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 324
ORDER BY f.position ASC |
1197
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN ps_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 2
AND c.`id_parent` = 2
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
1182
ms
|
15 |
Yes
|
Yes
|
/classes/Category.php:1229
/classes/Category.php:1165<br>/controllers/front/ProductController.php:846<br>/controllers/front/ProductController.php:321<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1176
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 313
LIMIT 1 |
1172
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 303
LIMIT 1 |
1170
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 336) AND (b.`id_shop` = 1) LIMIT 1 |
1155
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
1150
ms
|
109 |
|
|
/classes/module/Module.php:340
/modules/jprestaspeedpack/jprestaspeedpack.php:173<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1150
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
1148
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 200
LIMIT 1 |
1143
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 313 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 313 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1123
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 260
LIMIT 1 |
1118
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 351) AND (b.`id_shop` = 1) LIMIT 1 |
1093
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 319
ORDER BY f.position ASC |
1088
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 336
LIMIT 1 |
1084
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 313
ORDER BY f.position ASC |
1082
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE pc.`id_product_comment`,
(SELECT count(*) FROM `ps_product_comment_usefulness` pcu WHERE pcu.`id_product_comment` = pc.`id_product_comment` AND pcu.`usefulness` = 1) as total_useful,
(SELECT count(*) FROM `ps_product_comment_usefulness` pcu WHERE pcu.`id_product_comment` = pc.`id_product_comment`) as total_advice,
IF(c.id_customer, CONCAT(c.`firstname`, ' ', LEFT(c.`lastname`, 1)), pc.customer_name) customer_name, pc.`content`, pc.`grade`, pc.`date_add`, pc.title
FROM `ps_product_comment` pc
LEFT JOIN `ps_customer` c ON c.`id_customer` = pc.`id_customer`
WHERE pc.`id_product` = 796308 AND pc.`validate` = 1
AND pc.`id_shop` = 1
ORDER BY pc.`date_add` DESC |
1068
ms
|
1 |
Yes
|
|
/modules/myprestacomments/MyprestaComment.php:126
/modules/myprestacomments/myprestacomments.php:1150<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 319 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 319 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1064
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 796308 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 796308 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
1051
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/controllers/front/ProductController.php:1125<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 303
ORDER BY f.position ASC |
1049
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 344
LIMIT 1 |
1043
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/ps_categoryproducts/ps_categoryproducts.php:340<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 310
ORDER BY f.position ASC |
1038
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
INSERT INTO `ps_jm_pagecache_bl` (`id`, `backlink_key`) VALUES (17656530,1369577951),(17656530,646332947),(17656530,2045573785),(17656530,356088857),(17656530,425383288),(17656530,4031864464),(17656530,2212111586),(17656530,2443874084),(17656530,3803248302),(17656530,4041729017),(17656530,1762914393),(17656530,3885823930),(17656530,1985801074),(17656530,3570713190),(17656530,1339152311),(17656530,2173358424),(17656530,2815343596) ON DUPLICATE KEY UPDATE id=id |
1022
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:710
/modules/jprestaspeedpack/classes/PageCacheDAO.php:954<br>/modules/jprestaspeedpack/jprestaspeedpack.php:4020<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1332<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:730<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 329 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 329 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
998
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.*
FROM `ps_customer` c
WHERE (c.`email` = '[email protected]') AND (c.`id_shop` IN (1)) AND (c.`is_guest` = 0) AND (c.`deleted` = 0) LIMIT 1 |
980
ms
|
1 |
|
|
/classes/Customer.php:528
/modules/jprestaspeedpack/classes/JprestaCustomer.php:93<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2518<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 329) AND (b.`id_shop` = 1) LIMIT 1 |
978
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 11378
ORDER BY f.position ASC |
974
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 303 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 303 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
972
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 2 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 1816 AND c.`nright` >= 1817 AND c.`nleft` >= 2 AND c.`nright` <= 2071 ORDER BY `nleft` DESC |
971
ms
|
129 |
Yes
|
|
/classes/Category.php:1669
/override/classes/Category.php:161<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 310 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 310 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
952
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
939
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 313) AND (b.`id_shop` = 1) LIMIT 1 |
934
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
913
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_group_lang`
WHERE `id_group` = 1 |
910
ms
|
3 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Group.php:81<br>/classes/Group.php:397<br>/classes/Cart.php:248<br>/classes/Cart.php:221<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1473<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:514<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
909
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE pcc.`id_product_comment_criterion`, pccl.`name`
FROM `ps_product_comment_criterion` pcc
LEFT JOIN `ps_product_comment_criterion_lang` pccl
ON (pcc.id_product_comment_criterion = pccl.id_product_comment_criterion)
LEFT JOIN `ps_product_comment_criterion_product` pccp
ON (pcc.`id_product_comment_criterion` = pccp.`id_product_comment_criterion` AND pccp.`id_product` = 796308)
LEFT JOIN `ps_product_comment_criterion_category` pccc
ON (pcc.`id_product_comment_criterion` = pccc.`id_product_comment_criterion`)
LEFT JOIN `ps_product_shop` ps
ON (ps.id_category_default = pccc.id_category AND ps.id_product = 796308)
WHERE pccl.`id_lang` = 2
AND pcc.`id_shop` = 1
AND (
pccp.id_product IS NOT NULL
OR ps.id_product IS NOT NULL
OR pcc.id_product_comment_criterion_type = 1
)
AND pcc.active = 1
GROUP BY pcc.id_product_comment_criterion |
896
ms
|
1 |
|
Yes
|
/modules/myprestacomments/MyprestaCommentCriterion.php:228
/modules/myprestacomments/myprestacomments.php:1151<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 324) AND (b.`id_shop` = 1) LIMIT 1 |
889
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang` WHERE `iso_code` = 'uk' LIMIT 1 |
871
ms
|
3 |
|
|
/classes/Language.php:824
/classes/Tools.php:659<br>/classes/Dispatcher.php:242<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_category` a0
LEFT JOIN `ps_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`nleft` < 1816) AND (a0.`nright` > 1817) AND (a1.`id_lang` = 2)
ORDER BY a0.`nleft` asc |
870
ms
|
129 |
Yes
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:438<br>/controllers/front/ProductController.php:1255<br>/classes/controller/FrontController.php:1736<br>/classes/controller/FrontController.php:533<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
866
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE gs.*, s.*, gs.name AS group_name, s.name AS shop_name, s.active, su.domain, su.domain_ssl, su.physical_uri, su.virtual_uri
FROM ps_shop_group gs
LEFT JOIN ps_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN ps_shop_url su
ON s.id_shop = su.id_shop AND su.main = 1
WHERE s.deleted = 0
AND gs.deleted = 0
ORDER BY gs.name, s.name |
864
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:711
/classes/shop/Shop.php:770<br>/classes/Configuration.php:294<br>/classes/shop/Shop.php:384<br>/config/config.inc.php:144<br>/index.php:38
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 324 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 324 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
864
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 18087
ORDER BY f.position ASC |
854
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 799784
ORDER BY f.position ASC |
848
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
842
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
840
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/shop/Shop.php:132<br>/classes/shop/Shop.php:415<br>/config/config.inc.php:144<br>/index.php:38
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
838
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 11378 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 11378 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
833
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 260
ORDER BY f.position ASC |
827
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 799784 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 799784 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
820
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`id_attribute_group`, al.`name` as `attribute`, agl.`name` as `group`,pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
LEFT JOIN `ps_product_attribute_combination` pac
ON (a.`id_attribute` = pac.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pac.`id_product_attribute` = pa.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
INNER JOIN ps_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = pac.id_attribute AND attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 796308 |
815
ms
|
1 |
|
|
/classes/Product.php:7447
/classes/Product.php:7460<br>/controllers/front/ProductController.php:65<br>/controllers/front/ProductController.php:124<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
INSERT INTO `ps_jm_pagecache` (`cache_key`, `url`, `id_context`, `id_controller`, `id_shop`, `id_object`, `count_missed`, `count_hit`)
VALUES (
2085665282,
'https://magicbook.com.ua/uk/product-796308.html',
3,
3,
1,
796308,
1,
0) ON DUPLICATE KEY UPDATE `count_missed`=`count_missed` + 1, last_gen = CURRENT_TIMESTAMP, `deleted` = 0; |
809
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:710
/modules/jprestaspeedpack/classes/PageCacheDAO.php:900<br>/modules/jprestaspeedpack/jprestaspeedpack.php:4020<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1332<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:730<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `name`, `alias` FROM `ps_hook_alias` |
783
ms
|
88 |
|
|
/classes/Hook.php:301
/classes/Hook.php:332<br>/classes/Hook.php:742<br>/classes/Hook.php:815<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 319) AND (b.`id_shop` = 1) LIMIT 1 |
781
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 310) AND (b.`id_shop` = 1) LIMIT 1 |
766
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM ps_shop s
LEFT JOIN ps_shop_url su ON (s.id_shop = su.id_shop)
WHERE s.id_shop = 1
AND s.active = 1 AND s.deleted = 0 AND su.main = 1 LIMIT 1 |
755
ms
|
1 |
|
|
/classes/shop/Shop.php:205
/classes/shop/Shop.php:135<br>/classes/shop/Shop.php:415<br>/config/config.inc.php:144<br>/index.php:38
|
SELECT SQL_NO_CACHE name, value, pf.id_feature, f.position
FROM ps_feature_product pf
LEFT JOIN ps_feature_lang fl ON (fl.id_feature = pf.id_feature AND fl.id_lang = 2)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 2)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 2)
INNER JOIN ps_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1)
WHERE pf.id_product = 200
ORDER BY f.position ASC |
755
ms
|
24 |
Yes
|
|
/classes/Product.php:5918
/classes/Product.php:5780<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 351) |
750
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 344) |
743
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 336) |
735
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 329) |
730
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 260 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 260 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
719
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "superuser" LIMIT 1 |
717
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2104<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 11378
LIMIT 1 |
709
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/authorbooks/authorbooks.php:182<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 200 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 200 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
690
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE pc.`id_product_comment`,
-- pcg.`grade`,
pc.`grade`,
pccl.`name`,
pcc.`id_product_comment_criterion`
FROM `ps_product_comment` pc
LEFT JOIN `ps_product_comment_grade` pcg ON (pcg.`id_product_comment` = pc.`id_product_comment`)
LEFT JOIN `ps_product_comment_criterion` pcc ON (pcc.`id_product_comment_criterion` = pcg.`id_product_comment_criterion`)
LEFT JOIN `ps_product_comment_criterion_lang` pccl ON (pccl.`id_product_comment_criterion` = pcg.`id_product_comment_criterion`)
WHERE pc.`id_product` = 796308
AND pc.`id_shop` = 1
-- AND pccl.`id_lang` = 2
AND pc.`validate` = 1 |
687
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:188
/modules/myprestacomments/MyprestaComment.php:225<br>/modules/myprestacomments/myprestacomments.php:1134<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 799784) AND (b.`id_shop` = 1) LIMIT 1 |
677
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 11378) AND (b.`id_shop` = 1) LIMIT 1 |
674
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 303
ORDER BY `position` |
672
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 796308) AND (b.`id_shop` = 1) LIMIT 1 |
668
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:186<br>/classes/Link.php:1230<br>/classes/controller/FrontController.php:2039<br>/classes/controller/FrontController.php:1527<br>/classes/controller/FrontController.php:1652<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 313
ORDER BY `position` |
667
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 324
ORDER BY `position` |
665
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 329
ORDER BY `position` |
653
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 18087
LIMIT 1 |
652
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/authorbooks/authorbooks.php:182<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-04-07 00:00:00',
INTERVAL 20000 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 2
LEFT JOIN ps_stock_available sa
ON sa.id_product = p.id_product
AND sa.id_shop = 1
LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product = 799784
LIMIT 1 |
649
ms
|
1 |
|
|
/classes/ProductAssembler.php:95
/classes/ProductAssembler.php:112<br>/modules/authorbooks/authorbooks.php:182<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 319
ORDER BY `position` |
647
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
641
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 351
AND image_shop.`cover` = 1 LIMIT 1 |
637
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 313
ORDER BY `position` |
634
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 310
ORDER BY `position` |
629
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 3
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 796308) AND (b.`id_shop` = 1) LIMIT 1 |
628
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:186<br>/classes/Link.php:1230<br>/classes/controller/FrontController.php:2039<br>/classes/controller/FrontController.php:1527<br>/classes/controller/FrontController.php:1652<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 344
AND image_shop.`cover` = 1 LIMIT 1 |
623
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_lang_shop`
WHERE `id_lang` = 2
AND id_shop = 1 LIMIT 1 |
613
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/config/config.inc.php:240<br>/index.php:38
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 796308
ORDER BY `position` |
607
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductPresenter.php:110<br>/controllers/front/ProductController.php:1162<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 324) |
606
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 200
ORDER BY `position` |
606
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_tab, class_name FROM `ps_tab` |
605
ms
|
192 |
|
|
/classes/Tab.php:359
/controllers/front/ProductController.php:134<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 344
ORDER BY `position` |
605
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 796308
AND pc.`id_customer` = 0
ORDER BY pc.`date_add` DESC LIMIT 1 |
605
ms
|
1 |
Yes
|
|
/modules/myprestacomments/MyprestaComment.php:148
/modules/myprestacomments/myprestacomments.php:1132<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 260) AND (b.`id_shop` = 1) LIMIT 1 |
596
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_cms` a
LEFT JOIN `ps_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 2
LEFT JOIN `ps_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 3) AND (b.`id_shop` = 1) LIMIT 1 |
593
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Link.php:561<br>/var/cache/dev/smarty/compile/Bookrow/13/2e/96/132e96e9e77df1d8c6a357349eeb8e15075e52cc_2.file.mypresta_myprestacomments.tpl.php:306<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/myprestacomments/myprestacomments.php:1180<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name, alias FROM `ps_hook_alias` |
588
ms
|
88 |
|
|
/classes/Hook.php:353
/classes/Hook.php:158<br>/classes/Hook.php:377<br>/classes/Hook.php:400<br>/classes/Hook.php:933<br>/classes/Dispatcher.php:596<br>/classes/Dispatcher.php:249<br>/classes/Dispatcher.php:207<br>/index.php:39
|
SELECT SQL_NO_CACHE id FROM `ps_jm_pagecache_contexts` WHERE `id_shop`=1 AND `id_lang`=2 AND `id_currency`=1 AND `id_fake_customer` IS NULL AND `id_device`=1 AND `id_country` IS NULL AND `id_specifics` IS NULL ORDER BY used_by_cw DESC, count_hit_server DESC LIMIT 1 |
574
ms
|
1 |
Yes
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:746
/modules/jprestaspeedpack/classes/JprestaUtils.php:916<br>/modules/jprestaspeedpack/classes/PageCacheDAO.php:634<br>/modules/jprestaspeedpack/classes/PageCacheDAO.php:653<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2327<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "creativeelements" LIMIT 1 |
572
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2167<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1844<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 319) |
569
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_arcontactus_prompt` t
LEFT JOIN ps_arcontactus_prompt_lang l ON l.id_prompt = t.id_prompt
WHERE (l.id_lang = 2 AND t.status = 1)
ORDER BY position ASC |
565
ms
|
3 |
Yes
|
|
/modules/arcontactus/classes/ArContactUsPromptTable.php:64
/modules/arcontactus/arcontactus.php:595<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:438<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:99<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 2
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 2) AND (b.`id_shop` = 1) LIMIT 1 |
559
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Category.php:160<br>/classes/Category.php:1196<br>/classes/Category.php:1643<br>/override/classes/Category.php:161<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_arcontactus` t
LEFT JOIN ps_arcontactus_lang l ON l.id_contactus = t.id_contactus
WHERE (l.id_lang = 2 AND t.product_page = 1 AND (always = 1 OR d1 = 1) AND ((time_from <= '11:24:47' AND time_to >= '11:24:47') OR always = 1) AND (registered_only IN (0, 2) OR registered_only IS NULL))
ORDER BY position ASC |
556
ms
|
8 |
Yes
|
|
/modules/arcontactus/classes/ArContactUsTable.php:167
/modules/arcontactus/arcontactus.php:441<br>/modules/arcontactus/arcontactus.php:534<br>/modules/arcontactus/arcontactus.php:520<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c2/8b/a6/c28ba6ddcfc155ec38c8fde1f14eb5e92346f31f_2.file.product-additional-info.tpl.php:25<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:380<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:445<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:976<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 324
ORDER BY `position` |
549
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 310) |
548
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 336
ORDER BY `position` |
547
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` c
INNER JOIN ps_currency_shop currency_shop
ON (currency_shop.id_currency = c.id_currency AND currency_shop.id_shop = 1)
WHERE c.`deleted` = 0 AND c.`active` = 1 ORDER BY `iso_code` ASC |
541
ms
|
16 |
Yes
|
|
/classes/Currency.php:694
/classes/Currency.php:669<br>/modules/ps_currencyselector/ps_currencyselector.php:111<br>/modules/ps_currencyselector/ps_currencyselector.php:126<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 336
AND image_shop.`cover` = 1 LIMIT 1 |
540
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT c.*
FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = 2)
WHERE `level_depth` = 1 |
540
ms
|
1 |
|
|
/classes/Category.php:2316
/classes/Category.php:1627<br>/override/classes/Category.php:161<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 351) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
538
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 344
ORDER BY `position` |
535
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 796308
AND image_shop.`cover` = 1 LIMIT 1 |
532
ms
|
1 |
|
|
/classes/Product.php:3548
/modules/myprestacomments/myprestacomments.php:1142<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 324
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
531
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 313) |
529
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
527
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/classes/Group.php:400<br>/classes/Cart.php:248<br>/classes/Cart.php:221<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1473<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:514<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 200) AND (b.`id_shop` = 1) LIMIT 1 |
519
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
517
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 310
AND image_shop.`cover` = 1 LIMIT 1 |
515
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 200
ORDER BY `position` |
514
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 796308) |
511
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 319
AND image_shop.`cover` = 1 LIMIT 1 |
509
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 11378) |
501
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 329
ORDER BY `position` |
500
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "jprestaspeedpack" LIMIT 1 |
499
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/config/smartyfront.config.inc.php:56<br>/config/smarty.config.inc.php:59<br>/config/config.inc.php:247<br>/index.php:38
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 336) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
498
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 329
AND image_shop.`cover` = 1 LIMIT 1 |
498
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
497
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 799784
AND image_shop.`cover` = 1 LIMIT 1 |
496
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 799784) |
495
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE fvl.id_feature_value as id_feature_value
FROM `ps_feature_value_lang` AS fvl
LEFT JOIN ps_feature_value AS fv ON (fvl.id_feature_value = fv.id_feature_value)
WHERE fvl.value = 'Адизес Ицхак Калдерон, Маданес Иехезкель, Маданес Рути'
AND fvl.id_lang = 2
AND fv.id_feature = 12
ORDER BY fvl.id_lang |
495
ms
|
1 |
|
|
/modules/authorbooks/authorbooks.php:230
/modules/authorbooks/authorbooks.php:140<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 313
AND image_shop.`cover` = 1 LIMIT 1 |
495
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE item.`id_g_megamenus` FROM `ps_g_megamenus` item
LEFT JOIN `ps_g_megamenus_shop` itemshop
ON item.`id_g_megamenus` = itemshop.`id_g_megamenus`
WHERE FIND_IN_SET("all_page", item.pages) AND itemshop.id_shop = 1 AND item.`active` = 1
GROUP BY item.`id_g_megamenus` ORDER BY item.`id_g_megamenus` ASC |
490
ms
|
1 |
|
Yes
|
/modules/g_megamenu/classes/gmegamenusModel.php:109
/modules/g_megamenu/g_megamenu.php:1298<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 200
AND image_shop.`cover` = 1 LIMIT 1 |
489
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
INSERT INTO `ps_guest` (`id_operating_system`, `id_web_browser`, `id_customer`, `javascript`, `screen_resolution_x`, `screen_resolution_y`, `screen_color`, `sun_java`, `adobe_flash`, `adobe_director`, `apple_quicktime`, `real_player`, `windows_media`, `accept_language`, `mobile_theme`) VALUES ('0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '', '0') |
487
ms
|
1 |
|
|
/classes/ObjectModel.php:578
/classes/ObjectModel.php:535<br>/classes/Guest.php:251<br>/modules/statsdata/statsdata.php:77<br>/modules/statsdata/statsdata.php:68<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:376<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:122<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_psreassurance_virtual` pr
LEFT JOIN ps_psreassurance_virtual_lang prl ON (pr.id_psreassurance = prl.id_psreassurance)
WHERE prl.id_lang = "2"
AND pr.status = 1
ORDER BY pr.position |
487
ms
|
3 |
Yes
|
|
/modules/blockreassurance_virtual/classes/ReassuranceActivityVirtual.php:165
/modules/blockreassurance_virtual/blockreassurance_virtual.php:500<br>/modules/blockreassurance_virtual/blockreassurance_virtual.php:382<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:465<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:983<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 344
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
487
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 313
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
483
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(pc.`id_product`) AS nbr
FROM `ps_product_comment` pc
WHERE `id_product` = 796308 AND `validate` = 1
AND pc.`id_shop` = 1
AND `grade` > 0 LIMIT 1 |
481
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:284
/modules/myprestacomments/MyprestaComment.php:226<br>/modules/myprestacomments/myprestacomments.php:1134<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 344
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
480
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ets_affiliatemarketing" LIMIT 1 |
480
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2154<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1841<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE fvl.value AS feature_value
FROM
`ps_feature_product` fp
LEFT JOIN
`ps_feature_value` fv ON (fp.id_feature_value = fv.id_feature_value)
LEFT JOIN
`ps_feature_value_lang` fvl ON (fv.id_feature_value = fvl.id_feature_value
AND fvl.id_lang = 2)
WHERE
`id_product` = 11378
AND fv.id_feature = 9 LIMIT 1 |
479
ms
|
20 |
|
|
/override/classes/Product.php:107
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/aa/19/c1/aa19c1e47764a966369cea63f79c843ae9d80b84_2.file.product-variants.tpl.php:270<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/aa/19/c1/aa19c1e47764a966369cea63f79c843ae9d80b84_2.file.product-variants.tpl.php:35<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:273<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:411<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:976<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 260) |
478
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 313
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
476
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
475
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/shop/Shop.php:557<br>/config/config.inc.php:198<br>/index.php:38
|
SELECT SQL_NO_CACHE `id_guest`
FROM `ps_connections`
WHERE `id_guest` = 25662889
AND `date_add` > '2025-04-07 10:54:00'
AND id_shop IN (1)
ORDER BY `date_add` DESC LIMIT 1 |
475
ms
|
1 |
Yes
|
|
/classes/Connection.php:164
/classes/Connection.php:97<br>/modules/statsdata/statsdata.php:111<br>/modules/statsdata/statsdata.php:69<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:376<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:122<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 344) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
473
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE fvl.value FROM ps_feature_value_lang fvl LEFT JOIN `ps_feature_value` fv ON fvl.`id_feature_value` = fv.`id_feature_value` LEFT JOIN `ps_feature_product` fp ON fv.`id_feature_value` = fp.`id_feature_value` WHERE fp.`id_product` = 796308 AND fvl.`id_lang` = 2 AND fp.`id_feature` = 12 LIMIT 1 |
473
ms
|
1 |
|
|
/modules/authorbooks/authorbooks.php:205
/modules/authorbooks/authorbooks.php:135<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 796308
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
472
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:207<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:944<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 319) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
471
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "configb2b" LIMIT 1 |
470
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2008<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1835<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE ads.`id_search`, ads.`id_hook`, ads.`unique_search`
FROM `ps_pm_advancedsearch` ads
JOIN `ps_pm_advancedsearch_shop` adss ON (ads.`id_search`=adss.`id_search` AND adss.`id_shop`=1) WHERE 1 AND ads.`active`=1 ORDER BY ads.`position` |
470
ms
|
2 |
Yes
|
|
/modules/pm_advancedsearch4/classes/As4SearchEngineDb.php:48
/modules/pm_advancedsearch4/classes/As4SearchEngine.php:360<br>/modules/pm_advancedsearch4/classes/As4SearchEngine.php:337<br>/modules/pm_advancedsearch4/classes/As4SearchEngine.php:174<br>/modules/pm_advancedsearch4/pm_advancedsearch4.php:3726<br>/modules/pm_advancedsearch4/pm_advancedsearch4.php:3828<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "gdprpro" LIMIT 1 |
469
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2753<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 200) |
467
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
467
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_attribute_shop.id_product_attribute
FROM ps_product_attribute pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.id_product = 796308 LIMIT 1 |
467
ms
|
1 |
|
|
/classes/Product.php:1037
/classes/Product.php:3794<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT id_product FROM `ps_jm_pagecache_sp` WHERE date_from<='2025-04-07 11:24:00' OR date_to<'2025-04-07 11:24:00'; |
466
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:746
/modules/jprestaspeedpack/classes/PageCacheDAO.php:258<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2316<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 329 AND id_shop=1 LIMIT 1 |
463
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 336 AND id_shop=1 LIMIT 1 |
463
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 344
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
463
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT cp.`quantity` as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 18087 UNION SELECT 0 as first_level_quantity, cp.`quantity` * p.`quantity` as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 0
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 18087 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
462
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4298<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 214, 4, 0) + IF (`id_currency` = 1, 8, 0) + IF (`id_shop` = 1, 16, 0) + IF (`id_customer` = 0, 32, 0)) AS `score`
FROM `ps_specific_price`
WHERE
`id_shop` IN (0, 1) AND
`id_currency` IN (0, 1) AND
`id_country` IN (0, 214) AND
`id_group` IN (0, 1) AND `id_product` = 0 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-04-07 00:00:00' <= `to`)
AND IF(`from_quantity` > 1, `from_quantity`, 0) <= 1 ORDER BY `id_product_attribute` DESC, `id_cart` DESC, `from_quantity` DESC, `id_specific_price_rule` ASC, `score` DESC, `to` DESC, `from` DESC LIMIT 1 |
461
ms
|
2 |
Yes
|
|
/classes/SpecificPrice.php:561
/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 324
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
460
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 303
AND image_shop.`cover` = 1 LIMIT 1 |
459
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 344 AND id_shop=1 LIMIT 1 |
458
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 336
ORDER BY `position` |
455
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "cookiebanner" LIMIT 1 |
454
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3011<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE o.id_order
FROM ps_orders o
LEFT JOIN ps_order_detail od ON (od.id_order = o.id_order)
WHERE o.valid = 1
AND od.product_id IN (796308) |
451
ms
|
1 |
|
|
/modules/ps_crossselling/ps_crossselling.php:251
/modules/ps_crossselling/ps_crossselling.php:210<br>/modules/ps_crossselling/ps_crossselling.php:231<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 260
ORDER BY `position` |
450
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 303
ORDER BY `position` |
447
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 319
ORDER BY `position` |
445
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ets_delivery" LIMIT 1 |
444
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/ets_ordermanager/ets_ordermanager.php:180<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 310
ORDER BY `position` |
440
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 796308) LIMIT 1 |
437
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/modules/jsox_newgallery/jsox_newgallery.php:65<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 303
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
437
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 796308 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
436
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1166<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
432
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE 1 FROM ps_cart_product cp INNER JOIN ps_product p
ON (p.id_product = cp.id_product) INNER JOIN ps_product_shop ps
ON (ps.id_shop = cp.id_shop AND ps.id_product = p.id_product) WHERE cp.id_cart=0 LIMIT 1 |
429
ms
|
1 |
|
|
/classes/Cart.php:4218
/classes/Cart.php:4193<br>/classes/Cart.php:2134<br>/src/Adapter/Presenter/Cart/CartPresenter.php:334<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 2
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 11681) AND (b.`id_shop` = 1) LIMIT 1 |
428
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Category.php:160<br>/controllers/front/ProductController.php:236<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT
id_flibusta, id_product
FROM
ps_product_flibusta
WHERE
id_product = 796308 LIMIT 1 |
427
ms
|
1 |
|
|
/override/classes/Product.php:57
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:239<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:60<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:489<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:611<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:993<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_shop_url` a
WHERE (a.`id_shop_url` = 1) LIMIT 1 |
427
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/modules/jprestaspeedpack/jprestaspeedpack.php:4003<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1332<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:730<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_page`
FROM `ps_page`
WHERE `id_page_type` = 4 AND `id_object` = 796308 LIMIT 1 |
426
ms
|
1 |
|
|
/classes/Page.php:83
/classes/Connection.php:176<br>/classes/Connection.php:97<br>/modules/statsdata/statsdata.php:111<br>/modules/statsdata/statsdata.php:69<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:376<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:122<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 336
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
424
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 310
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
423
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT
id_product
FROM
ps_feature_product
WHERE
id_feature_value IN (16978) AND
id_product <> 796308
GROUP BY id_product ORDER BY RAND() LIMIT 15; |
419
ms
|
4 |
Yes
|
Yes
|
/modules/authorbooks/authorbooks.php:246
/modules/authorbooks/authorbooks.php:148<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 11378
AND image_shop.`cover` = 1 LIMIT 1 |
419
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 796308) AND (b.`id_shop` = 1) LIMIT 1 |
417
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 313 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
414
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_arcontactus` t
LEFT JOIN ps_arcontactus_lang l ON l.id_contactus = t.id_contactus
WHERE (l.id_lang = 2 AND t.status = 1 AND (always = 1 OR d1 = 1) AND ((time_from <= '11:24:47' AND time_to >= '11:24:47') OR always = 1) AND (registered_only IN (0, 2) OR registered_only IS NULL))
ORDER BY position ASC |
412
ms
|
8 |
Yes
|
|
/modules/arcontactus/classes/ArContactUsTable.php:167
/modules/arcontactus/arcontactus.php:449<br>/modules/arcontactus/arcontactus.php:732<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 319
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
412
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 324 AND id_shop=1 LIMIT 1 |
411
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 260
ORDER BY `position` |
411
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:51<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:222<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 18087
ORDER BY `position` |
410
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:221<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
INSERT INTO `ps_connections` (`id_guest`, `id_page`, `ip_address`, `http_referer`, `id_shop`, `id_shop_group`, `date_add`) VALUES ('25662889', '694757', '2890204867', '', '1', '1', '2025-04-07 11:24:47') |
410
ms
|
1 |
|
|
/classes/ObjectModel.php:578
/classes/Connection.php:184<br>/classes/Connection.php:97<br>/modules/statsdata/statsdata.php:111<br>/modules/statsdata/statsdata.php:69<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:376<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:122<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 303) AND (b.`id_shop` = 1) LIMIT 1 |
410
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 344 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
409
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 2 AND cl.id_shop = 1 ) WHERE c.`id_category` = 11681 LIMIT 1 |
407
ms
|
1 |
|
|
/classes/Category.php:1654
/override/classes/Category.php:161<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_page_type
FROM ps_page_type
WHERE name = 'product' LIMIT 1 |
406
ms
|
1 |
|
|
/classes/Page.php:104
/classes/Page.php:55<br>/classes/Connection.php:176<br>/classes/Connection.php:97<br>/modules/statsdata/statsdata.php:111<br>/modules/statsdata/statsdata.php:69<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:376<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:122<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE m.`id_module` as `active`, ms.`id_module` as `shop_active`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms ON m.`id_module` = ms.`id_module`
WHERE `name` = "ps_categorytree"
AND ms.`id_shop` IN (1) LIMIT 1 |
406
ms
|
0 |
|
|
/src/Adapter/Module/ModuleDataProvider.php:174
/src/Core/Addon/Module/ModuleManager.php:580<br>/controllers/front/ProductController.php:240<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 310
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
405
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 324
AND image_shop.`cover` = 1 LIMIT 1 |
402
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 329
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
395
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 336 AND `id_group` = 1 LIMIT 1 |
395
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 336
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
394
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 796308
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
394
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:207<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:944<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 351 AND id_shop=1 LIMIT 1 |
393
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 313) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
392
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
392
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
390
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_g_megamenus` a
LEFT JOIN `ps_g_megamenus_lang` `b` ON a.`id_g_megamenus` = b.`id_g_megamenus` AND b.`id_lang` = 2
LEFT JOIN `ps_g_megamenus_shop` `c` ON a.`id_g_megamenus` = c.`id_g_megamenus` AND c.`id_shop` = 1
WHERE (a.`id_g_megamenus` = 1) LIMIT 1 |
389
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/modules/g_megamenu/classes/gmegamenusModel.php:49<br>/modules/g_megamenu/g_megamenu.php:1323<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE ctg.`id_group`
FROM `ps_category_product` cp
INNER JOIN `ps_category_group` ctg ON (ctg.`id_category` = cp.`id_category`)
WHERE cp.`id_product` = 796308 AND ctg.`id_group` = 1 LIMIT 1 |
388
ms
|
4 |
|
|
/classes/Product.php:6635
/classes/Product.php:6613<br>/controllers/front/ProductController.php:194<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 11378
ORDER BY `position` |
379
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:221<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
379
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/controllers/front/ProductController.php:1125<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 310 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
379
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
379
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`nleft`, c.`nright`, c.`level_depth`
FROM `ps_category` c
WHERE (c.`id_category` = 2) LIMIT 1 |
379
ms
|
1 |
|
|
/classes/Category.php:2040
/classes/Category.php:2064<br>/controllers/front/ProductController.php:830<br>/controllers/front/ProductController.php:321<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 0 LIMIT 1 |
378
ms
|
2 |
|
|
/classes/SpecificPrice.php:411
/classes/SpecificPrice.php:508<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
376
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 303
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
376
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 11378
ORDER BY `position` |
372
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/authorbooks/authorbooks.php:183<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
372
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 260
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
370
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 329 |
368
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 324) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
367
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 319 |
366
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 2
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 18087) AND (b.`id_shop` = 1) LIMIT 1 |
364
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5636<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `width`, `height`
FROM ps_image_type
WHERE `name` = 'medium_default' LIMIT 1 |
363
ms
|
1 |
|
|
/classes/Image.php:510
/modules/myprestacomments/myprestacomments.php:1165<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_linklist" LIMIT 1 |
362
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:99<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE book_type
FROM
ps_jsoxLitresItems
WHERE
id_product = 796308 LIMIT 1 |
362
ms
|
1 |
|
|
/override/classes/Product.php:17
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:924<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 351
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
362
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 324 |
362
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_image_type` |
357
ms
|
9 |
|
|
/classes/ImageType.php:147
/classes/ImageType.php:204<br>/modules/myprestacomments/myprestacomments.php:1165<br>/modules/myprestacomments/myprestacomments.php:1119<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
355
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_categorytree" LIMIT 1 |
354
ms
|
1 |
|
|
/src/Adapter/Module/ModuleDataProvider.php:198
/src/Adapter/Module/ModuleDataProvider.php:185<br>/src/Core/Addon/Module/ModuleManager.php:592<br>/controllers/front/ProductController.php:240<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 18087
ORDER BY `position` |
354
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/authorbooks/authorbooks.php:183<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 200
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
353
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 329 AND `id_group` = 1 LIMIT 1 |
352
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
352
ms
|
9 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:165<br>/src/Adapter/Image/ImageRetriever.php:93<br>:undefined<br>/src/Adapter/Image/ImageRetriever.php:87<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductPresenter.php:110<br>/controllers/front/ProductController.php:1162<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 313 |
351
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 18087
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
351
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 329
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
350
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 336 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
349
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
349
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
346
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 329) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
345
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 11378
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
344
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 344 AND `id_group` = 1 LIMIT 1 |
343
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 310 AND id_shop=1 LIMIT 1 |
339
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 351 AND `id_group` = 1 LIMIT 1 |
337
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
335
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 11378) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
335
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 324 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
335
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
335
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_product_duplicate
FROM ps_product_duplicate_ua
WHERE id_product_original = 796308 LIMIT 1 |
333
ms
|
1 |
|
|
/override/classes/Product.php:73
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/aa/19/c1/aa19c1e47764a966369cea63f79c843ae9d80b84_2.file.product-variants.tpl.php:225<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/aa/19/c1/aa19c1e47764a966369cea63f79c843ae9d80b84_2.file.product-variants.tpl.php:35<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:273<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:411<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:976<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 796308 AND `id_shop` = 1 |
333
ms
|
3 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:710<br>/modules/jsox_newgallery/jsox_newgallery.php:65<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 336
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
332
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_category
FROM ps_category
WHERE nleft >= 1816
AND nright <= 1817 |
332
ms
|
127 |
|
|
/override/classes/Category.php:114
/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM ps_tag t
LEFT JOIN ps_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=796308 |
332
ms
|
1 |
|
|
/classes/Tag.php:229
/classes/Product.php:742<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "productcomments" LIMIT 1 |
331
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/myprestacomments/myprestacomments.php:67<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 329
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
331
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 303) |
330
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 799784
ORDER BY `position` |
328
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/src/Adapter/Image/ImageRetriever.php:69<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/authorbooks/authorbooks.php:183<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
327
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 260
AND image_shop.`cover` = 1 LIMIT 1 |
326
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 319
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
325
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "cz_footercmsblock" LIMIT 1 |
324
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:99<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 303 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
324
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 796308 |
321
ms
|
4 |
|
|
/classes/Product.php:3401
/controllers/front/ProductController.php:403<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 799784) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
320
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 303) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
320
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
320
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 74 AND `id_shop` = 1 LIMIT 1 |
319
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:99<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
318
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2104<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE ctg.`id_group`
FROM ps_category_group ctg
WHERE ctg.`id_category` = 11681 AND ctg.`id_group` = 1 LIMIT 1 |
317
ms
|
1 |
|
|
/classes/Category.php:1813
/override/classes/Category.php:46<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_category_shop`
WHERE `id_category` = 11681
AND id_shop = 1 LIMIT 1 |
315
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/controllers/front/ProductController.php:830<br>/controllers/front/ProductController.php:321<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_gutenberg
FROM
ps_product_gutenberg
WHERE
id_product = 796308 LIMIT 1 |
315
ms
|
1 |
|
|
/modules/jsox_newgallery/jsox_newgallery.php:105
/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:261<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:970<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_crossselling" LIMIT 1 |
314
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2)
WHERE i.`id_product` = 799784
ORDER BY `position` |
314
ms
|
1 |
Yes
|
|
/classes/Product.php:3523
/modules/cz_imagehover/cz_imagehover.php:74<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:221<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 319 AND id_shop=1 LIMIT 1 |
314
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_searchbar" LIMIT 1 |
313
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 11681 AND `id_shop` = 1 |
311
ms
|
3 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Category.php:160<br>/modules/ps_categoryproducts/ps_categoryproducts.php:241<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 303 |
311
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE book_type
FROM
ps_jsoxLitresItems
WHERE
id_product = 796308 LIMIT 1 |
310
ms
|
1 |
|
|
/override/classes/Product.php:17
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/1b/14/c1/1b14c1e01b2a32f5f760f923c4a9201ad3d254bd_2.file.product-add-to-cart.tpl.php:61<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/1b/14/c1/1b14c1e01b2a32f5f760f923c4a9201ad3d254bd_2.file.product-add-to-cart.tpl.php:32<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:368<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:440<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:976<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 799784
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
310
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 200
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
310
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 344 |
309
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 2) LIMIT 1 |
307
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Currency.php:766<br>/classes/Currency.php:669<br>/modules/ps_currencyselector/ps_currencyselector.php:111<br>/modules/ps_currencyselector/ps_currencyselector.php:126<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 796308 AND `id_group` = 1 LIMIT 1 |
306
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 260
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
303
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE `from` BETWEEN '2025-04-07 00:00:00' AND '2025-04-07 23:59:59' LIMIT 1 |
303
ms
|
1 |
|
|
/classes/SpecificPrice.php:362
/classes/SpecificPrice.php:533<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_sharebuttons" LIMIT 1 |
303
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c2/8b/a6/c28ba6ddcfc155ec38c8fde1f14eb5e92346f31f_2.file.product-additional-info.tpl.php:25<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:380<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:445<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:976<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_languageselector" LIMIT 1 |
302
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 200) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
301
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 796308 |
301
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductPresenter.php:110<br>/controllers/front/ProductController.php:1162<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "blocklanguages" LIMIT 1 |
300
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/psblog/psblog.php:512<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:26<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_customersignin" LIMIT 1 |
300
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 310 |
299
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
299
ms
|
1 |
|
|
/classes/Product.php:5635
/controllers/front/ProductController.php:1125<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `iso_code`
FROM `ps_country`
WHERE `id_country` = 214 LIMIT 1 |
298
ms
|
1 |
|
|
/classes/Country.php:274
/src/Core/Addon/Module/ModuleManagerBuilder.php:260<br>/src/Core/Addon/Module/ModuleManagerBuilder.php:181<br>/src/Core/Addon/Module/ModuleManagerBuilder.php:92<br>/controllers/front/ProductController.php:237<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 260) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
297
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 329 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
297
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
296
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
296
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE i.`id_image` as id
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 796308
ORDER BY i.`position` |
295
ms
|
1 |
Yes
|
|
/classes/Product.php:7224
/modules/jsox_newgallery/jsox_newgallery.php:67<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 28 AND `id_shop` = 1 LIMIT 1 |
293
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:99<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT
id_flibusta, id_product
FROM
ps_product_flibusta
WHERE
id_product = 796308 LIMIT 1 |
293
ms
|
1 |
|
|
/override/classes/Product.php:57
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:239<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:60<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:489<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:611<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:993<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 200 |
292
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 11378
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
291
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_product_shop`
WHERE `id_product` = 796308
AND id_shop = 1 LIMIT 1 |
289
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/controllers/front/ProductController.php:140<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 303
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
289
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE file_location
FROM
ps_product_litres_files
WHERE
id_product = 796308
AND file_location LIKE "%Fragment%" |
289
ms
|
1 |
|
|
/modules/jsox_newgallery/jsox_newgallery.php:128
/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:261<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:970<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 324
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
289
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 11 AND `id_shop` = 1 LIMIT 1 |
287
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/myprestacomments/myprestacomments.php:67<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/src/Adapter/HookManager.php:79<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:70<br>/src/Core/Product/ProductExtraContentFinder.php:55<br>/src/PrestaShopBundle/Service/Hook/HookFinder.php:102<br>/controllers/front/ProductController.php:1121<br>/controllers/front/ProductController.php:374<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 310) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
287
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT
id_flibusta, id_product
FROM
ps_product_flibusta
WHERE
id_product = 796308 LIMIT 1 |
284
ms
|
1 |
|
|
/override/classes/Product.php:57
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:239<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:60<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:489<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:611<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:993<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
WHERE p.id_product = 796308
AND DATEDIFF("2025-04-07 00:00:00", product_shop.`date_add`) < 20000 LIMIT 1 |
284
ms
|
1 |
|
|
/classes/Product.php:1648
/classes/Product.php:735<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 796308) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
283
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:7779<br>/classes/Product.php:744<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 310
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
282
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 18087) |
280
ms
|
1 |
|
|
/classes/Product.php:3837
/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 11378 AND id_shop=1 LIMIT 1 |
279
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 799784
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
279
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS grade
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 799784
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
279
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:219
/modules/myprestacomments/myprestacomments.php:1098<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 18087
AND image_shop.`cover` = 1 LIMIT 1 |
279
ms
|
1 |
|
|
/classes/Product.php:3548
/classes/Product.php:5619<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 319
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
278
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 313
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
278
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_currencyselector" LIMIT 1 |
277
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
276
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `name`
FROM `ps_hook`
WHERE `id_hook` = 773 LIMIT 1 |
276
ms
|
1 |
|
|
/classes/Hook.php:239
/classes/Hook.php:884<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 200 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
276
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 3) LIMIT 1 |
276
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Currency.php:766<br>/classes/Currency.php:669<br>/modules/ps_currencyselector/ps_currencyselector.php:111<br>/modules/ps_currencyselector/ps_currencyselector.php:126<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 796308 AND id_shop=1 LIMIT 1 |
273
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 2
AND cl.id_shop = 1
AND cl.`id_category` = 11681 LIMIT 1 |
273
ms
|
1 |
|
|
/classes/Category.php:1454
/classes/Product.php:748<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 260 AND id_shop=1 LIMIT 1 |
273
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_country` a
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 214) LIMIT 1 |
270
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/AddressFormat.php:404<br>/classes/AddressFormat.php:439<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 313 AND `id_group` = 1 LIMIT 1 |
270
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 15 AND `id_shop` = 1 LIMIT 1 |
269
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:99<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
269
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 260 |
268
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_contactinfo" LIMIT 1 |
268
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:99<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 796308) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
267
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:769
/classes/Product.php:7780<br>/classes/Product.php:744<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(p.id_product)
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
WHERE p.id_product = 796308
AND DATEDIFF("2025-04-07 00:00:00", product_shop.`date_add`) < 20000 LIMIT 1 |
267
ms
|
1 |
|
|
/classes/Product.php:1648
/classes/Product.php:735<br>/modules/ganalyticspro/lib/gtag/productTag.php:39<br>/modules/ganalyticspro/lib/gtag/baseTag.php:372<br>/modules/ganalyticspro/lib/moduleTools.php:232<br>/modules/ganalyticspro/lib/moduleTools.php:664<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:89<br>:undefined<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:65<br>/modules/ganalyticspro/lib/hook/hookController.php:55<br>/modules/ganalyticspro/ganalyticspro.php:286<br>/modules/ganalyticspro/ganalyticspro.php:256<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 799784 AND id_shop=1 LIMIT 1 |
267
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 260 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
267
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 18087
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
267
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE file_location
FROM
ps_product_litres_files
WHERE
id_product = 796308
AND file_location LIKE "%.pdf%"
AND file_location NOT LIKE "%preview_%" |
266
ms
|
1 |
|
|
/modules/jsox_newgallery/jsox_newgallery.php:228
/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:261<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:970<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE DISTINCT
id_flibusta, id_product
FROM
ps_product_flibusta
WHERE
id_product = 796308 LIMIT 1 |
266
ms
|
1 |
|
|
/override/classes/Product.php:57
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:239<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/0c/9a/04/0c9a0457fb55fc1cdd24bc6c6ba45565ecb94a7f_2.file.product-details.tpl.php:60<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:489<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:611<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:993<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 75 AND `id_shop` = 1 LIMIT 1 |
265
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:117<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE `to` BETWEEN '2025-04-07 00:00:00' AND '2025-04-07 23:59:59' LIMIT 1 |
265
ms
|
1 |
|
|
/classes/SpecificPrice.php:366
/classes/SpecificPrice.php:533<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_product_original
FROM ps_product_duplicate_ua
WHERE id_product_duplicate = 796308 LIMIT 1 |
264
ms
|
1 |
|
|
/override/classes/Product.php:85
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/aa/19/c1/aa19c1e47764a966369cea63f79c843ae9d80b84_2.file.product-variants.tpl.php:251<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/aa/19/c1/aa19c1e47764a966369cea63f79c843ae9d80b84_2.file.product-variants.tpl.php:35<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:273<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:411<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:976<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 111 AND `id_shop` = 1 LIMIT 1 |
261
ms
|
1 |
|
|
/classes/module/Module.php:2330
/config/smartyfront.config.inc.php:56<br>/config/smarty.config.inc.php:59<br>/config/config.inc.php:247<br>/index.php:38
|
SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 3 |
261
ms
|
3 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Currency.php:766<br>/classes/Currency.php:669<br>/modules/ps_currencyselector/ps_currencyselector.php:111<br>/modules/ps_currencyselector/ps_currencyselector.php:126<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE book_type
FROM
ps_jsoxLitresItems
WHERE
id_product = 796308 LIMIT 1 |
261
ms
|
1 |
|
|
/override/classes/Product.php:17
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:935<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 2 |
260
ms
|
3 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Currency.php:766<br>/classes/Currency.php:669<br>/modules/ps_currencyselector/ps_currencyselector.php:111<br>/modules/ps_currencyselector/ps_currencyselector.php:126<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 324 AND `id_group` = 1 LIMIT 1 |
260
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_flibusta
FROM
ps_product_flibusta
WHERE
id_product = 796308 LIMIT 1 |
258
ms
|
1 |
|
|
/modules/jsox_newgallery/jsox_newgallery.php:115
/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:261<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:970<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE book_type
FROM
ps_jsoxLitresItems
WHERE
id_product = 796308 LIMIT 1 |
256
ms
|
1 |
|
|
/override/classes/Product.php:17
/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:925<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 313 AND id_shop=1 LIMIT 1 |
256
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_legalcompliance" LIMIT 1 |
256
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/controller/FrontController.php:1573<br>/classes/controller/FrontController.php:1710<br>/controllers/front/ProductController.php:1374<br>/classes/controller/FrontController.php:528<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 12080 LIMIT 1 |
253
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE (SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_product_comment` pc
WHERE pc.`id_product` = 11378
AND pc.`id_shop` = 1
AND pc.`deleted` = 0 AND pc.`validate` = 1 LIMIT 1 |
252
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:205
/modules/myprestacomments/myprestacomments.php:1103<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
249
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 3
AND cl.id_shop = 1
AND cl.`id_category` = 11681 LIMIT 1 |
249
ms
|
1 |
|
|
/classes/Category.php:1454
/classes/Product.php:748<br>/classes/Link.php:114<br>/classes/Link.php:186<br>/classes/Link.php:1230<br>/classes/controller/FrontController.php:2039<br>/classes/controller/FrontController.php:1527<br>/classes/controller/FrontController.php:1652<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
248
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2154<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1841<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 2
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 2) LIMIT 1 |
248
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/src/Adapter/Currency/CurrencyDataProvider.php:101<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE hm.`id_module`
FROM `ps_hook_module` hm, `ps_hook` h
WHERE hm.`id_module` = 32 AND h.`id_hook` = 1
AND h.`id_hook` = hm.`id_hook` AND `id_shop` = 1 LIMIT 1 |
247
ms
|
1 |
|
|
/classes/Hook.php:634
/classes/module/Module.php:1016<br>/modules/ps_shoppingcart/ps_shoppingcart.php:53<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 11681 LIMIT 1 |
244
ms
|
1 |
|
|
/classes/Category.php:1454
/classes/Product.php:748<br>/classes/Link.php:114<br>/classes/Link.php:186<br>/classes/Link.php:1230<br>/classes/controller/FrontController.php:2039<br>/classes/controller/FrontController.php:1527<br>/classes/controller/FrontController.php:1652<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_socialfollow" LIMIT 1 |
242
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:117<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `name`
FROM `ps_manufacturer`
WHERE `id_manufacturer` = 0
AND `active` = 1 LIMIT 1 |
242
ms
|
0 |
|
|
/classes/Manufacturer.php:312
/classes/Product.php:726<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
DELETE FROM `ps_jm_pagecache_mods` WHERE `id`=17656530; |
241
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:710
/modules/jprestaspeedpack/classes/PageCacheDAO.php:922<br>/modules/jprestaspeedpack/jprestaspeedpack.php:4020<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1332<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:730<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 27 AND `id_shop` = 1 LIMIT 1 |
241
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 796308) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
240
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Product.php:7782<br>/classes/Product.php:744<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE depends_on_stock
FROM `ps_stock_available`
WHERE (id_product = 796308) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
237
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:744
/classes/Product.php:7781<br>/classes/Product.php:744<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "cz_blockpaymentlogo" LIMIT 1 |
236
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:117<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE t.`id_lang`, t.`name`
FROM ps_tag t
LEFT JOIN ps_product_tag pt ON (pt.id_tag = t.id_tag)
WHERE pt.`id_product`=796308 |
235
ms
|
1 |
|
|
/classes/Tag.php:229
/classes/Product.php:742<br>/modules/ganalyticspro/lib/gtag/productTag.php:39<br>/modules/ganalyticspro/lib/gtag/baseTag.php:372<br>/modules/ganalyticspro/lib/moduleTools.php:232<br>/modules/ganalyticspro/lib/moduleTools.php:664<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:89<br>:undefined<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:65<br>/modules/ganalyticspro/lib/hook/hookController.php:55<br>/modules/ganalyticspro/ganalyticspro.php:286<br>/modules/ganalyticspro/ganalyticspro.php:256<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 319 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
235
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:74<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:238<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.cache.php:28<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/39/d3/1a/39d31a599d73c039735add7bd5dc7a2a3a72c0ba_2.module.pscategoryproductsviewste.cache.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:211<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2492<br>/modules/ps_categoryproducts/ps_categoryproducts.php:259<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 18087 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
235
ms
|
2 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_country_lang`
WHERE `id_country` = 214 |
234
ms
|
3 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/AddressFormat.php:404<br>/classes/AddressFormat.php:439<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 260 AND `id_group` = 1 LIMIT 1 |
234
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
233
ms
|
1 |
|
|
/classes/Category.php:1660
/override/classes/Category.php:161<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_gap_refund` gf
WHERE (gf.shop_id=1) AND (gf.sent= "0") LIMIT 1 |
233
ms
|
1 |
|
|
/modules/ganalyticspro/models/orderRefund.php:108
/modules/ganalyticspro/lib/moduleTools.php:676<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:89<br>:undefined<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:65<br>/modules/ganalyticspro/lib/hook/hookController.php:55<br>/modules/ganalyticspro/ganalyticspro.php:286<br>/modules/ganalyticspro/ganalyticspro.php:256<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
231
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 19 AND `id_shop` = 1 LIMIT 1 |
231
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `ps_currency` c
LEFT JOIN ps_currency_shop cs ON (cs.id_currency = c.id_currency AND cs.id_shop = 1)
WHERE c.`active` = 1 LIMIT 1 |
231
ms
|
4 |
|
|
/classes/Currency.php:1126
/classes/Currency.php:1143<br>/classes/module/Module.php:2425<br>/modules/arcontactus/arcontactus.php:806<br>/modules/arcontactus/arcontactus.php:795<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_shoppingcart" LIMIT 1 |
229
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 16 AND `id_shop` = 1 LIMIT 1 |
229
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 200 AND id_shop=1 LIMIT 1 |
228
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
226
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2167<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1844<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 796308
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
226
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 31 AND `id_shop` = 1 LIMIT 1 |
225
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c2/8b/a6/c28ba6ddcfc155ec38c8fde1f14eb5e92346f31f_2.file.product-additional-info.tpl.php:25<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:380<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:445<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:976<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
224
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2008<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1835<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 11378 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
224
ms
|
1 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 17 AND `id_shop` = 1 LIMIT 1 |
224
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 319 AND `id_group` = 1 LIMIT 1 |
223
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 30 AND `id_shop` = 1 LIMIT 1 |
223
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_group`
WHERE `id_group` = 1 LIMIT 1 |
222
ms
|
1 |
|
|
/classes/Group.php:154
/classes/Product.php:3972<br>/classes/Product.php:3691<br>/classes/Product.php:740<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
221
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2783<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `name` FROM `ps_supplier` WHERE `id_supplier` = 0 LIMIT 1 |
220
ms
|
0 |
|
|
/classes/Supplier.php:244
/classes/Product.php:727<br>/controllers/front/ProductController.php:115<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 32 AND `id_shop` = 1 LIMIT 1 |
218
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:112<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 260
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
217
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `name`
FROM `ps_hook`
WHERE `id_hook` = 772 LIMIT 1 |
216
ms
|
1 |
|
|
/classes/Hook.php:239
/classes/Hook.php:884<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 310 AND `id_group` = 1 LIMIT 1 |
216
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 33 AND `id_shop` = 1 LIMIT 1 |
215
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:117<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/ba/fe/8b/bafe8b831b61ee9ed912817c7297505787dcb65a_2.file.footer.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:340<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:109<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_gap_refund_partial` grf
WHERE (grf.shop_id=1) AND (grf.sent= "0") LIMIT 1 |
213
ms
|
1 |
|
|
/modules/ganalyticspro/models/orderPartialRefund.php:108
/modules/ganalyticspro/lib/moduleTools.php:677<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:89<br>:undefined<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:65<br>/modules/ganalyticspro/lib/hook/hookController.php:55<br>/modules/ganalyticspro/ganalyticspro.php:286<br>/modules/ganalyticspro/ganalyticspro.php:256<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 200
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
213
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 336 |
212
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/ps_categoryproducts/ps_categoryproducts.php:341<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
212
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/psblog/psblog.php:512<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/fb/83/02fb83f1e005a4a12cb8602503186ef4f0f75301_2.file.header.tpl.php:26<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:195<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:65<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
208
ms
|
0 |
|
|
/classes/module/Module.php:2330
/classes/controller/FrontController.php:1573<br>/classes/controller/FrontController.php:1710<br>/controllers/front/ProductController.php:1374<br>/classes/controller/FrontController.php:528<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 2
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 3) LIMIT 1 |
208
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/src/Adapter/Currency/CurrencyDataProvider.php:101<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE format
FROM `ps_address_format`
WHERE `id_country` = 214 LIMIT 1 |
208
ms
|
1 |
|
|
/classes/AddressFormat.php:672
/classes/AddressFormat.php:634<br>/classes/AddressFormat.php:619<br>/classes/AddressFormat.php:563<br>/classes/AddressFormat.php:438<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 799784 AND `id_group` = 1 LIMIT 1 |
205
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
205
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2753<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ultimateimagetool" LIMIT 1 |
205
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3029<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 796308) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
204
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:769
/classes/Product.php:7780<br>/classes/Product.php:744<br>/modules/ganalyticspro/lib/gtag/productTag.php:39<br>/modules/ganalyticspro/lib/gtag/baseTag.php:372<br>/modules/ganalyticspro/lib/moduleTools.php:232<br>/modules/ganalyticspro/lib/moduleTools.php:664<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:89<br>:undefined<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:65<br>/modules/ganalyticspro/lib/hook/hookController.php:55<br>/modules/ganalyticspro/ganalyticspro.php:286<br>/modules/ganalyticspro/ganalyticspro.php:256<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE COUNT(`id_product_comment`) AS "nbr"
FROM `ps_product_comment` pc
WHERE `id_product` = 799784 AND `validate` = 1
AND pc.`id_shop` = 1 LIMIT 1 |
204
ms
|
4 |
|
|
/modules/myprestacomments/MyprestaComment.php:263
/modules/myprestacomments/myprestacomments.php:1105<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:73<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:237<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrow/e7/aa/46/e7aa464df4b99e5f78510f2a83627b8014f6157e_2.file.product-nocart.tpl.php:27<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/dev/smarty/compile/Bookrow/d4/f6/c6/d4f6c6f270f9b364cef8324556c3a20c7c7c7893_2.file.authorbooks.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDevTemplate.php:40<br>/classes/module/Module.php:2451<br>/modules/authorbooks/authorbooks.php:193<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps_country`
WHERE `id_country` = 214 LIMIT 1 |
203
ms
|
1 |
|
|
/classes/Country.php:401
/classes/AddressFormat.php:638<br>/classes/AddressFormat.php:619<br>/classes/AddressFormat.php:563<br>/classes/AddressFormat.php:438<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE * FROM `ps_currency` c ORDER BY `iso_code` ASC |
202
ms
|
4 |
Yes
|
|
/classes/Currency.php:709
/src/Adapter/Currency/CurrencyDataProvider.php:84<br>/src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:90<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 2
AND cl.id_shop = 1
AND cl.`id_category` = 12080 LIMIT 1 |
201
ms
|
1 |
|
|
/classes/Category.php:1454
/classes/Product.php:5634<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE context_key FROM `ps_jm_pagecache_contexts` WHERE id = 3 |
200
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:746
/modules/jprestaspeedpack/classes/JprestaUtils.php:916<br>/modules/jprestaspeedpack/classes/PageCacheDAO.php:685<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2327<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
DELETE FROM `ps_jm_pagecache_bl` WHERE `id`=17656530; |
200
ms
|
1 |
|
|
/modules/jprestaspeedpack/classes/JprestaUtils.php:710
/modules/jprestaspeedpack/classes/PageCacheDAO.php:942<br>/modules/jprestaspeedpack/jprestaspeedpack.php:4020<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1332<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:730<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 2
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 4) LIMIT 1 |
199
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/src/Adapter/Currency/CurrencyDataProvider.php:101<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 11681) LIMIT 1 |
199
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Category.php:160<br>/modules/ps_categoryproducts/ps_categoryproducts.php:241<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 11378 AND `id_group` = 1 LIMIT 1 |
197
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 796308) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
197
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Product.php:7782<br>/classes/Product.php:744<br>/modules/ganalyticspro/lib/gtag/productTag.php:39<br>/modules/ganalyticspro/lib/gtag/baseTag.php:372<br>/modules/ganalyticspro/lib/moduleTools.php:232<br>/modules/ganalyticspro/lib/moduleTools.php:664<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:89<br>:undefined<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:65<br>/modules/ganalyticspro/lib/hook/hookController.php:55<br>/modules/ganalyticspro/ganalyticspro.php:286<br>/modules/ganalyticspro/ganalyticspro.php:256<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE depends_on_stock
FROM `ps_stock_available`
WHERE (id_product = 796308) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
196
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:744
/classes/Product.php:7781<br>/classes/Product.php:744<br>/modules/ganalyticspro/lib/gtag/productTag.php:39<br>/modules/ganalyticspro/lib/gtag/baseTag.php:372<br>/modules/ganalyticspro/lib/moduleTools.php:232<br>/modules/ganalyticspro/lib/moduleTools.php:664<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:89<br>:undefined<br>/modules/ganalyticspro/lib/hook/hookDisplay.php:65<br>/modules/ganalyticspro/lib/hook/hookController.php:55<br>/modules/ganalyticspro/ganalyticspro.php:286<br>/modules/ganalyticspro/ganalyticspro.php:256<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_facebook" LIMIT 1 |
196
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/ps_facebook/classes/Handler/ErrorHandler/ErrorHandler.php:47<br>/var/cache/dev/Ps_facebookFrontContainer.php:405<br>/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:306<br>/modules/ps_facebook/vendor/prestashop/module-lib-service-container/src/DependencyInjection/ServiceContainer.php:64<br>/modules/ps_facebook/ps_facebook.php:204<br>/modules/ps_facebook/ps_facebook.php:353<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 11378 |
195
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/authorbooks/authorbooks.php:183<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_shop FROM ps_shop |
190
ms
|
1 |
|
|
/classes/shop/Shop.php:747
/classes/Hook.php:623<br>/classes/module/Module.php:1016<br>/modules/ps_shoppingcart/ps_shoppingcart.php:53<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "cookiesplus" LIMIT 1 |
190
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2895<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 200 AND `id_group` = 1 LIMIT 1 |
189
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 60 AND `id_shop` = 1 LIMIT 1 |
188
ms
|
1 |
|
|
/classes/module/Module.php:2330
/modules/ps_facebook/classes/Handler/ErrorHandler/ErrorHandler.php:47<br>/var/cache/dev/Ps_facebookFrontContainer.php:405<br>/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:306<br>/modules/ps_facebook/vendor/prestashop/module-lib-service-container/src/DependencyInjection/ServiceContainer.php:64<br>/modules/ps_facebook/ps_facebook.php:204<br>/modules/ps_facebook/ps_facebook.php:353<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "atssuperuser" LIMIT 1 |
186
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2116<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 11681 LIMIT 1 |
186
ms
|
0 |
|
|
/classes/Category.php:1454
/classes/Product.php:748<br>/modules/jsox_newgallery/jsox_newgallery.php:65<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM ps_required_field |
185
ms
|
1 |
|
|
/classes/ObjectModel.php:1510
/classes/ObjectModel.php:1542<br>/classes/ObjectModel.php:1473<br>/classes/controller/FrontController.php:532<br>/classes/controller/FrontController.php:590<br>/override/classes/controller/FrontController.php:16<br>/controllers/front/ProductController.php:426<br>/override/controllers/front/ProductController.php:11<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 2
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
184
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/src/Adapter/Currency/CurrencyDataProvider.php:101<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
183
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 |
182
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_categoryproducts" LIMIT 1 |
181
ms
|
1 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "smartseourl" LIMIT 1 |
181
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3920<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2075<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1836<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
180
ms
|
3 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
178
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2766<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "groupinc" LIMIT 1 |
176
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2126<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
176
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2895<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
176
ms
|
3 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 119 AND `id_shop` = 1 LIMIT 1 |
175
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3029<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "pm_advancedcookiebanner" LIMIT 1 |
173
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2973<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 799784 |
173
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/authorbooks/authorbooks.php:183<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "wkadminloginascustomer" LIMIT 1 |
172
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2121<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
172
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3101<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 303 AND id_shop=1 LIMIT 1 |
171
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
171
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4297<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
171
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2823<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 18087) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
170
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4292<br>/classes/Product.php:5760<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 18087 |
168
ms
|
1 |
|
|
/classes/Product.php:2881
/src/Adapter/Image/ImageRetriever.php:75<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:653<br>/src/Adapter/Presenter/Product/ProductLazyArray.php:123<br>/src/Adapter/Presenter/Product/ProductListingPresenter.php:57<br>/modules/authorbooks/authorbooks.php:183<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
168
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2116<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
168
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2973<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
167
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3920<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2075<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1836<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
167
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2804<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'USD') LIMIT 1 |
166
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
166
ms
|
3 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:112<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "validatevatnumber" LIMIT 1 |
164
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2804<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
163
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3016<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
162
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3011<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
162
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3038<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "lgcookieslaw" LIMIT 1 |
162
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2828<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 303 AND `id_group` = 1 LIMIT 1 |
162
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
160
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2138<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 123 AND `id_shop` = 1 LIMIT 1 |
159
ms
|
1 |
|
|
/classes/module/Module.php:2330
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
159
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2126<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
158
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2121<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
158
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2759<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "generaldataprotectionregulation" LIMIT 1 |
158
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2759<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE value FROM `ps_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
158
ms
|
1 |
|
|
/classes/shop/Shop.php:1171
/classes/Currency.php:968<br>/classes/Currency.php:890<br>/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "uecookie" LIMIT 1 |
157
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2789<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
157
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3118<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
157
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3092<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "deluxecookies" LIMIT 1 |
157
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2809<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "pm_applepay" LIMIT 1 |
157
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3101<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
157
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2809<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "dm_cookies" LIMIT 1 |
156
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3066<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "systemina_employeefilter" LIMIT 1 |
156
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2960<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
156
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2776<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
156
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2828<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "webpgenerator" LIMIT 1 |
156
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3016<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ageverify" LIMIT 1 |
156
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2766<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
155
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2794<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "nxtalpricetaxswitcher" LIMIT 1 |
155
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3092<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
155
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3066<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
155
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3058<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "shaim_gdpr" LIMIT 1 |
155
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2138<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1834<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2313<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ageverifyer" LIMIT 1 |
154
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2776<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "eugeneraldatapro" LIMIT 1 |
154
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3112<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
154
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2789<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
154
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:2960<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
153
ms
|
3 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "hicookielaw" LIMIT 1 |
153
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3038<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitthemeeditor" LIMIT 1 |
153
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3123<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
153
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3112<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
152
ms
|
3 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:112<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iubenda" LIMIT 1 |
152
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3058<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "tnzcookie" LIMIT 1 |
151
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2823<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
151
ms
|
0 |
|
|
/classes/module/Module.php:2330
/modules/jprestaspeedpack/jprestaspeedpack.php:3123<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 18087 AND id_shop=1 LIMIT 1 |
150
ms
|
1 |
|
|
/classes/Product.php:6771
/classes/Product.php:3902<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "wkexitpopup" LIMIT 1 |
150
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:3118<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "idxcookies" LIMIT 1 |
149
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2794<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "kbgdpr" LIMIT 1 |
149
ms
|
0 |
|
|
/classes/module/Module.php:2842
/classes/module/Module.php:2329<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2783<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2576<br>/modules/jprestaspeedpack/jprestaspeedpack.php:2320<br>/modules/jprestaspeedpack/jprestaspeedpack.php:1370<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Dispatcher.php:357<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 12080 LIMIT 1 |
148
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 18087 AND `id_group` = 1 LIMIT 1 |
145
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3968<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 11681 LIMIT 1 |
144
ms
|
1 |
|
|
/classes/Product.php:5635
/classes/Product.php:5887<br>/override/classes/Category.php:192<br>/src/Adapter/Category/CategoryProductSearchProvider.php:73<br>/src/Adapter/Category/CategoryProductSearchProvider.php:113<br>/modules/ps_categoryproducts/ps_categoryproducts.php:312<br>/modules/ps_categoryproducts/ps_categoryproducts.php:218<br>/modules/ps_categoryproducts/ps_categoryproducts.php:248<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
143
ms
|
3 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:112<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 18087
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
142
ms
|
0 |
|
|
/classes/SpecificPrice.php:250
/classes/SpecificPrice.php:230<br>/classes/SpecificPrice.php:550<br>/classes/Product.php:3804<br>/classes/Product.php:3691<br>/classes/Product.php:5653<br>/classes/Product.php:5887<br>/modules/authorbooks/authorbooks.php:352<br>/modules/authorbooks/authorbooks.php:170<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:724<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:1004<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:101<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/02/8d/ed/028ded5be860e0e99043386fe4bfc213abf70f96_2.file.layout-both-columns.tpl.php:93<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/d7/62/55/d76255481430358e7a1f9aaa7a4ea76fb8845024_2.file.layout-full-width.tpl.php:42<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/dev/smarty/compile/Bookrowlayouts_layout_full_width_tpl/c1/1b/a5/c11ba5d6b085906146ddc37f3cbb547c28291b58_2.file.product.tpl.php:56<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/Smarty/SmartyDev.php:40<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'UAH') LIMIT 1 |
140
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'RUB') LIMIT 1 |
139
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
136
ms
|
3 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'uk-ua'
OR `language_code` = 'uk-ua' LIMIT 1 |
128
ms
|
3 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:112<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/controllers/front/ProductController.php:105<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:518<br>/index.php:39
|