SELECT SQL_NO_CACHE p.*, product_shop.*, image_shop.`id_image` id_image,
stock.`out_of_stock`, IFNULL( stock.`quantity`, 0 ) AS quantity
FROM (
SELECT product_shop.*, IFNULL(product_attribute_shop.`id_product_attribute`, 0) AS id_product_attribute,
product_attribute_shop.`minimal_quantity` AS product_attribute_minimal_quantity, pl.`description`, pl.`description_short`, pl.`available_now`,
pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`,
DATEDIFF(product_shop.`date_add`, DATE_SUB("2025-05-11 00:00:00",
INTERVAL 2000 DAY)) > 0 AS new,
(product_shop.`price` + IFNULL(product_attribute_shop.`price`, 0)) AS orderprice
FROM `ps_category_product` cp
STRAIGHT_JOIN ps_product_shop product_shop
ON (product_shop.id_product = cp.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_product_attribute_shop` product_attribute_shop
ON (product_shop.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.`id_shop`=1)
LEFT JOIN `ps_category` c ON (c.`id_category` = cp.`id_category`
AND c.`nleft` >= 2 AND c.`nright` <= 385)
LEFT JOIN `ps_product_lang` pl
ON (product_shop.`id_product` = pl.`id_product`
AND pl.`id_lang` = 2 AND pl.id_shop = 1 )
WHERE c.`id_category` > 0 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") GROUP BY cp.`id_product` ORDER BY pl.`name` ASC
LIMIT 0,12) AS `product_shop`
LEFT JOIN `ps_product` p ON (p.`id_product` = product_shop.`id_product`)
LEFT JOIN `ps_image_shop` image_shop
ON (image_shop.`id_product` = product_shop.`id_product` AND image_shop.`cover`=1 AND image_shop.`id_shop`=1)
LEFT JOIN ps_stock_available stock
ON (stock.id_product = `product_shop`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 ) |
37.7 |
24216 |
|
Yes |
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/pm_advancedsearch4.php:3390 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(DISTINCT cp.`id_product`) AS total
FROM `ps_category_product` cp
STRAIGHT_JOIN ps_product_shop product_shop
ON (product_shop.id_product = cp.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_category` c ON (
c.`id_category` = cp.`id_category`
AND c.`nleft` >= 2
AND c.`nright` <= 385
)
WHERE c.`id_category` > 0 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
17.8 |
2018 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:72
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:101 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3311 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:80 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4483 |
9.1 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` |
7.8 |
1464 |
Yes |
Yes |
/classes/Hook.php:670
/classes/Hook.php:775 /classes/Dispatcher.php:593 /classes/Dispatcher.php:249 /classes/Dispatcher.php:207 /index.php:29
|
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`) |
6.8 |
842 |
|
|
/classes/Configuration.php:160
/classes/Configuration.php:209 /classes/Configuration.php:289 /classes/shop/Shop.php:382 /config/config.inc.php:119 /index.php:28
|
SELECT SQL_NO_CACHE c.id_parent, c.id_category, cl.name, cl.description, cl.link_rewrite
FROM `ps_category` c
INNER JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = 2 AND cl.id_shop = 1 )
INNER JOIN `ps_category_shop` cs ON (cs.`id_category` = c.`id_category` AND cs.`id_shop` = 1)
WHERE (c.`active` = 1 OR c.`id_category` = 2)
AND c.`id_category` != 1
AND `level_depth` <= 5
AND nleft >= 2 AND nright <= 385
AND c.id_category IN (
SELECT id_category
FROM `ps_category_group`
WHERE `id_group` IN (1)
)
ORDER BY `level_depth` ASC, cs.`position` ASC |
5.8 |
193 |
Yes |
|
/modules/ps_categorytree/ps_categorytree.php:117
/modules/ps_categorytree/ps_categorytree.php:300 /modules/ps_categorytree/ps_categorytree.php:281 /classes/Hook.php:975 /classes/Hook.php:927 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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 |
4.2 |
244 |
Yes |
|
/classes/Country.php:147
/modules/ps_emailsubscription/ps_emailsubscription.php:93 :undefined /src/Core/Foundation/IoC/Container.php:127 /src/Core/Foundation/IoC/Container.php:164 /src/Core/Foundation/IoC/Container.php:177 /src/Adapter/ServiceLocator.php:65 /classes/module/Module.php:1141 /classes/module/Module.php:1120 /classes/Hook.php:884 /classes/controller/FrontController.php:928 /tools/profiling/Controller.php:221 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4483
ORDER BY `position` |
3 |
2 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
3 |
0 |
|
|
/classes/Hook.php:194
/classes/Hook.php:787 /classes/Dispatcher.php:593 /classes/Dispatcher.php:249 /classes/Dispatcher.php:207 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(DISTINCT `id_product`) FROM `ps_specific_price` WHERE `id_product` != 0 LIMIT 1 |
2.7 |
1103 |
|
|
/classes/SpecificPrice.php:283
/classes/SpecificPrice.php:341 /classes/SpecificPrice.php:529 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ac.`id_criterion`, ac.`id_criterion_group`, acg.`visible`,aclink.`id_criterion_linked`
FROM `ps_pm_advancedsearch_criterion_1` ac
JOIN `ps_pm_advancedsearch_criterion_1_link` aclink ON (ac.`id_criterion` = aclink.`id_criterion`)
LEFT JOIN `ps_pm_advancedsearch_criterion_group_1` acg ON (acg.`id_criterion_group` = ac.`id_criterion_group`)
WHERE acg.`criterion_group_type` = "category"
AND aclink.`id_criterion_linked` = 2 |
2.6 |
50 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineUtils.php:519 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:1440 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2134 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE c.id_parent, c.id_category, cl.name, cl.description, cl.link_rewrite
FROM `ps_category` c
INNER JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = 2 AND cl.id_shop = 1 )
INNER JOIN `ps_category_shop` cs ON (cs.`id_category` = c.`id_category` AND cs.`id_shop` = 1)
WHERE (c.`active` = 1 OR c.`id_category` = 2)
AND c.`id_category` != 1
AND `level_depth` <= 4
AND nleft >= 2 AND nright <= 385
AND c.id_category IN (
SELECT id_category
FROM `ps_category_group`
WHERE `id_group` IN (1)
)
ORDER BY `level_depth` ASC, cs.`position` ASC |
2.4 |
193 |
Yes |
|
/modules/possearchproducts/possearchproducts.php:226
/modules/possearchproducts/possearchproducts.php:183 /modules/possearchproducts/possearchproducts.php:195 /classes/Hook.php:975 /classes/Hook.php:927 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:155 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4488) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.2 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (3803) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.2 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4484) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.1 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4334) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.1 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (5874) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.1 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4495) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.1 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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, 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 |
2.1 |
507 |
|
|
/classes/Hook.php:407
/classes/Hook.php:449 /classes/tax/TaxManagerFactory.php:67 /classes/tax/TaxManagerFactory.php:46 /classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE acg.*, acgl.*
FROM `ps_pm_advancedsearch_criterion_group_1` acg
LEFT JOIN `ps_pm_advancedsearch_criterion_group_1_lang` acgl ON (acg.`id_criterion_group` = acgl.`id_criterion_group` AND acgl.`id_lang` = 2 )
WHERE acg.`id_criterion_group` IN (3,4)
ORDER BY `position` |
2.1 |
2 |
Yes |
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/Models/CriterionGroup.php:270 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2250 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4483) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.1 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4490) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 2
AND `active` = 1
AND cg.`id_group` =1
GROUP BY c.`id_category`
ORDER BY `level_depth` ASC, category_shop.`position` ASC |
2 |
11 |
Yes |
Yes |
/classes/Category.php:909
/controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (5875) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.9 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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 |
1.9 |
61 |
Yes |
|
/classes/Dispatcher.php:640
/classes/Dispatcher.php:249 /classes/Dispatcher.php:207 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 3803
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.9 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4471) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.9 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (4333) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.7 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 5874
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.7 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
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)
JOIN `ps_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `ps_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `ps_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 2)
JOIN `ps_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (5876) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.6 |
2 |
Yes |
Yes |
/classes/Product.php:3887
/src/Adapter/Product/ProductColorsRetriever.php:43 /src/Adapter/Presenter/Product/ProductLazyArray.php:496 /src/Adapter/Presenter/AbstractLazyArray.php:241 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:261 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:394 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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 |
1.6 |
122 |
|
|
/classes/module/Module.php:307
/modules/pm_advancedsearch4/classes/Core.php:59 /modules/pm_advancedsearch4/pm_advancedsearch4.php:132 :undefined /src/Core/Foundation/IoC/Container.php:131 /src/Core/Foundation/IoC/Container.php:164 /src/Core/Foundation/IoC/Container.php:177 /src/Adapter/ServiceLocator.php:65 /classes/module/Module.php:1141 /classes/module/Module.php:1120 /classes/Hook.php:884 /classes/Dispatcher.php:593 /classes/Dispatcher.php:249 /classes/Dispatcher.php:207 /index.php:29
|
SELECT SQL_NO_CACHE ctg.`id_group`
FROM ps_category_group ctg
WHERE ctg.`id_category` = 2 AND ctg.`id_group` = 1 LIMIT 1 |
1.5 |
1 |
|
|
/classes/Category.php:1691
/modules/pm_advancedsearch4/pm_advancedsearch4.php:3289 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:80 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 5876
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.5 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4334
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.5 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4333
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.5 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 5875
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.5 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =3803 AND imgs.`rotator` =1 |
1.4 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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 |
1.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Currency.php:213 /src/Adapter/Currency/CurrencyDataProvider.php:101 /src/Adapter/Currency/CurrencyDataProvider.php:111 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:91 /src/Core/Data/Layer/AbstractDataLayer.php:90 /src/Core/Data/Layer/AbstractDataLayer.php:150 /src/Core/Data/Layer/AbstractDataLayer.php:94 /src/Core/Localization/Currency/CurrencyDataSource.php:67 /src/Core/Localization/Currency/CurrencyDataSource.php:110 /src/Core/Localization/Currency/CurrencyDataSource.php:97 /src/Core/Localization/Currency/Repository.php:95 /src/Core/Localization/Locale/Repository.php:207 /src/Core/Localization/Locale/Repository.php:150 /classes/controller/Controller.php:189 /classes/controller/FrontController.php:271 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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 = 'lbdc.tn' OR su.domain_ssl = 'lbdc.tn')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
1.4 |
1 |
Yes |
|
/classes/shop/Shop.php:345
/config/config.inc.php:119 /index.php:28
|
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` = 210) LIMIT 1 |
1.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /config/config.inc.php:141 /index.php:28
|
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 |
1.3 |
122 |
|
|
/classes/module/Module.php:307
/modules/ps_emailsubscription/ps_emailsubscription.php:64 :undefined /src/Core/Foundation/IoC/Container.php:127 /src/Core/Foundation/IoC/Container.php:164 /src/Core/Foundation/IoC/Container.php:177 /src/Adapter/ServiceLocator.php:65 /classes/module/Module.php:1141 /classes/module/Module.php:1120 /classes/Hook.php:884 /classes/controller/FrontController.php:928 /tools/profiling/Controller.php:221 /classes/Dispatcher.php:515 /index.php:29
|
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 = 3803
ORDER BY f.position ASC |
1.3 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
1.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Group.php:78 /classes/Group.php:394 /classes/Cart.php:245 /classes/Cart.php:218 /classes/controller/FrontController.php:410 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4483
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.3 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_state` ORDER BY `name` ASC |
1.3 |
312 |
Yes |
|
/classes/Country.php:154
/modules/ps_emailsubscription/ps_emailsubscription.php:93 :undefined /src/Core/Foundation/IoC/Container.php:127 /src/Core/Foundation/IoC/Container.php:164 /src/Core/Foundation/IoC/Container.php:177 /src/Adapter/ServiceLocator.php:65 /classes/module/Module.php:1141 /classes/module/Module.php:1120 /classes/Hook.php:884 /classes/controller/FrontController.php:928 /tools/profiling/Controller.php:221 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4483 AND imgs.`rotator` =1 |
1.3 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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 |
1.3 |
1 |
Yes |
|
/classes/shop/Shop.php:705
/classes/shop/Shop.php:764 /classes/Configuration.php:286 /classes/shop/Shop.php:382 /config/config.inc.php:119 /index.php:28
|
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` = 4488
ORDER BY `position` |
1.3 |
3 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_pos_logo` ps LEFT JOIN `ps_pos_logo_shop` s ON ps.id_pos_logo = s.id_pos_logo where s.`id_shop` =1 ORDER BY `porder` ASC |
1.3 |
7 |
Yes |
|
/modules/poslogo/poslogo.php:189
/modules/poslogo/poslogo.php:274 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:128 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_cms FROM `ps_pm_advancedsearch_cms` WHERE id_search=1 |
1.3 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:106 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:197 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:254 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
(SELECT 1 FROM `ps_cart_rule` WHERE date_to >= "2025-05-11 00:00:00" AND date_to <= "2025-05-11 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from >= "2025-05-11 00:00:00" AND date_from <= "2025-05-11 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from < "2025-05-11 00:00:00" AND date_to > "2025-05-11 23:59:59" AND `id_customer` IN (0,0) LIMIT 1) LIMIT 1 |
1.2 |
1 |
|
|
/classes/CartRule.php:342
/classes/CartRule.php:375 /classes/Cart.php:2799 /classes/Cart.php:3182 /classes/Cart.php:3255 /src/Core/Cart/Fees.php:81 /src/Core/Cart/Calculator.php:294 /src/Core/Cart/Calculator.php:129 /classes/Cart.php:1974 /src/Adapter/Presenter/Cart/CartPresenter.php:327 /classes/controller/FrontController.php:490 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4333 AND imgs.`rotator` =1 |
1.2 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =5876 AND imgs.`rotator` =1 |
1.2 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4488 AND imgs.`rotator` =1 |
1.2 |
3 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =5874 AND imgs.`rotator` =1 |
1.2 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4471 AND imgs.`rotator` =1 |
1.2 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4488
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.2 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4484
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.1 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4495
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.1 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4490 |
1.1 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4471
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.1 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pa.*, product_attribute_shop.*, ag.`id_attribute_group`, ag.`is_color_group`, agl.`name` AS group_name, al.`name` AS attribute_name,
a.`id_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)
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` AND al.`id_lang` = 2)
LEFT JOIN `ps_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 2)
WHERE pa.`id_product` = 4490
GROUP BY pa.`id_product_attribute`,ag.`id_attribute_group`
ORDER BY pa.`id_product_attribute` |
1.1 |
1 |
Yes |
Yes |
/classes/Product.php:2397
/modules/trustpilot/trustbox.php:108 /modules/trustpilot/trustbox.php:40 /modules/trustpilot/trustpilot.php:450 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/ProductListingFrontController.php:389 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "spinwheel" LIMIT 1 |
1.1 |
1 |
|
|
/classes/module/Module.php:2786
/classes/module/Module.php:2286 /modules/spinwheel/spinwheel.php:424 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/FrontController.php:556 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_currency` c ORDER BY `iso_code` ASC |
1 |
3 |
Yes |
|
/classes/Currency.php:581
/src/Adapter/Currency/CurrencyDataProvider.php:84 /src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:92 /src/Core/Localization/Currency/CurrencyDataSource.php:97 /src/Core/Localization/Currency/Repository.php:95 /src/Core/Localization/Locale/Repository.php:207 /src/Core/Localization/Locale/Repository.php:150 /classes/controller/Controller.php:189 /classes/controller/FrontController.php:271 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ads.* , adsl.*, ads.`id_search`
FROM `ps_pm_advancedsearch` ads
LEFT JOIN `ps_pm_advancedsearch_lang` adsl ON (ads.`id_search` = adsl.`id_search` AND adsl.`id_lang` = 2 )
WHERE ads.`id_search` IN (1)
ORDER BY ads.`position` |
1 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineUtils.php:342 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:327 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 2) LIMIT 1 |
1 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:1346 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2706 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3005 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2960 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/FrontController.php:556 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4334 AND imgs.`rotator` =1 |
1 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_category FROM `ps_pm_advancedsearch_category` WHERE id_search=1 |
1 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:106 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:195 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:254 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
1 |
1 |
|
|
/classes/Cart.php:4055
/classes/Cart.php:4030 /classes/Cart.php:1926 /src/Adapter/Presenter/Cart/CartPresenter.php:326 /classes/controller/FrontController.php:490 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_hook_alias` |
1 |
83 |
|
|
/classes/Hook.php:238
/classes/Hook.php:379 /classes/Hook.php:695 /classes/Hook.php:775 /classes/Dispatcher.php:593 /classes/Dispatcher.php:249 /classes/Dispatcher.php:207 /index.php:29
|
SELECT SQL_NO_CACHE ac.`id_criterion`, acl.`value`, ac.`visible`
FROM `ps_pm_advancedsearch_criterion_1` ac
LEFT JOIN `ps_pm_advancedsearch_criterion_1_lang` acl ON (ac.`id_criterion` = acl.`id_criterion` AND acl.`id_lang` = 2)
WHERE ac.`id_criterion` = 47 LIMIT 1 |
1 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:70
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:97 /modules/pm_advancedsearch4/classes/Models/Criterion.php:245 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2266 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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 |
0.9 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:85 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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 = 5876
ORDER BY f.position ASC |
0.9 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_group_lang`
WHERE `id_group` = 1 |
0.9 |
1 |
|
|
/src/Adapter/EntityMapper.php:82
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Group.php:78 /classes/Group.php:394 /classes/Cart.php:245 /classes/Cart.php:218 /classes/controller/FrontController.php:410 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 108
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.9 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE value FROM `ps_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
0.9 |
1 |
|
|
/classes/shop/Shop.php:1164
/classes/Currency.php:774 /classes/Currency.php:748 /src/Adapter/Currency/CurrencyDataProvider.php:92 /src/Adapter/Currency/CurrencyDataProvider.php:111 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:91 /src/Core/Data/Layer/AbstractDataLayer.php:90 /src/Core/Data/Layer/AbstractDataLayer.php:150 /src/Core/Data/Layer/AbstractDataLayer.php:94 /src/Core/Localization/Currency/CurrencyDataSource.php:67 /src/Core/Localization/Currency/CurrencyDataSource.php:110 /src/Core/Localization/Currency/CurrencyDataSource.php:97 /src/Core/Localization/Currency/Repository.php:95 /src/Core/Localization/Locale/Repository.php:207 /src/Core/Localization/Locale/Repository.php:150 /classes/controller/Controller.php:189 /classes/controller/FrontController.php:271 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4483 LIMIT 1 |
0.9 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4333
ORDER BY f.position ASC |
0.9 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4490 AND imgs.`rotator` =1 |
0.9 |
3 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4333) AND (b.`id_shop` = 1) LIMIT 1 |
0.9 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4490
ORDER BY f.position ASC |
0.9 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4495
ORDER BY f.position ASC |
0.9 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 3803 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` = 3803 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.9 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4483
ORDER BY f.position ASC |
0.9 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4484 AND imgs.`rotator` =1 |
0.9 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =5875 AND imgs.`rotator` =1 |
0.9 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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) |
0.9 |
1 |
|
|
/classes/Language.php:911
/config/config.inc.php:138 /index.php:28
|
SELECT SQL_NO_CACHE * FROM `ps_image` img LEFT JOIN `ps_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =4495 AND imgs.`rotator` =1 |
0.9 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4490
ORDER BY `position` |
0.9 |
3 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4471
ORDER BY f.position ASC |
0.9 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4488
ORDER BY f.position ASC |
0.9 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4488 |
0.9 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM ps_meta m
LEFT JOIN ps_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "manufacturer"
OR m.page = "manufacturer"
)
AND ml.id_lang = 2
AND ml.id_shop = 1 LIMIT 1 |
0.8 |
1 |
|
|
/classes/Meta.php:189
/modules/posmegamenu/posmegamenu.php:851 /modules/posmegamenu/posmegamenu.php:755 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE acg.*, acgl.*
FROM `ps_pm_advancedsearch_criterion_group_1` acg
LEFT JOIN `ps_pm_advancedsearch_criterion_group_1_lang` acgl ON (acg.`id_criterion_group` = acgl.`id_criterion_group` AND acgl.`id_lang` = 2 )
WHERE acg.`id_search` = 1
ORDER BY `position` |
0.8 |
10 |
Yes |
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/Models/CriterionGroup.php:244 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2170 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` |
0.8 |
1 |
Yes |
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineUtils.php:395 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:374 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:217 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2824 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2958 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/FrontController.php:556 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 5874
ORDER BY f.position ASC |
0.8 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4484
ORDER BY f.position ASC |
0.8 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_attribute_group` FROM `ps_attribute_group` WHERE `is_color_group`=1 |
0.8 |
2 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineIndexation.php:1586 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2242 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_product FROM `ps_pm_advancedsearch_products` WHERE id_search=1 |
0.8 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:106 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:200 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:254 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4495 |
0.8 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5875 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` = 5875 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.8 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4495 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` = 4495 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.8 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4495) AND (b.`id_shop` = 1) LIMIT 1 |
0.8 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4488 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` = 4488 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.8 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
0.8 |
1 |
|
|
/classes/shop/Shop.php:201
/classes/shop/Shop.php:131 /classes/shop/Shop.php:413 /config/config.inc.php:119 /index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_pm_advancedsearch_manufacturers` WHERE id_search=1 |
0.8 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:106 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:199 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:254 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 2 AND `id_shop` = 1 |
0.8 |
1 |
|
|
/src/Adapter/EntityMapper.php:82
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:1346 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2706 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3005 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2960 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/FrontController.php:556 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_manufacturer, name
FROM ps_manufacturer
WHERE active = 1
ORDER BY id_manufacturer desc |
0.8 |
36 |
|
|
/modules/ets_manufacturerslider/ets_manufacturerslider.php:501
/modules/ets_manufacturerslider/ets_manufacturerslider.php:528 /modules/ets_manufacturerslider/ets_manufacturerslider.php:555 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/17/38/f9/1738f986b4410ceaa088f72a52e59a3c0302ea17_2.file.logo.tpl.php:28 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/module/Module.php:2409 /modules/poslogo/poslogo.php:278 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:128 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4483 |
0.8 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
0.8 |
1 |
|
|
/classes/Language.php:1058
/classes/Language.php:1240 /classes/Dispatcher.php:538 /classes/Dispatcher.php:238 /classes/Dispatcher.php:207 /index.php:29
|
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` = 4333 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` = 4333 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.8 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE domain, domain_ssl
FROM ps_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
0.8 |
1 |
|
|
/classes/shop/ShopUrl.php:182
/classes/shop/ShopUrl.php:196 /classes/Tools.php:320 /classes/Link.php:58 /config/config.inc.php:233 /index.php:28
|
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` = 4471 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` = 4471 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.8 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
(SELECT 1 FROM `ps_cart_rule` WHERE date_to >= "2025-05-11 00:00:00" AND date_to <= "2025-05-11 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from >= "2025-05-11 00:00:00" AND date_from <= "2025-05-11 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from < "2025-05-11 00:00:00" AND date_to > "2025-05-11 23:59:59" AND `id_customer` IN (0,0) LIMIT 1) LIMIT 1 |
0.8 |
1 |
|
|
/classes/CartRule.php:342
/classes/CartRule.php:375 /classes/CartRule.php:512 /classes/Cart.php:508 /src/Adapter/Presenter/Cart/CartPresenter.php:439 /classes/controller/FrontController.php:490 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4495
ORDER BY `position` |
0.8 |
1 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_hook_module_exceptions`
WHERE `id_shop` IN (1) |
0.8 |
1 |
|
|
/classes/module/Module.php:2221
/classes/Hook.php:852 /classes/controller/FrontController.php:928 /tools/profiling/Controller.php:221 /classes/Dispatcher.php:515 /index.php:29
|
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 = 5875
ORDER BY f.position ASC |
0.7 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_supplier FROM `ps_pm_advancedsearch_suppliers` WHERE id_search=1 |
0.7 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:106 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:198 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:254 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4495 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.7 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE data
FROM `ps_ganalytics_data`
WHERE id_cart = 0
AND id_shop = 1 LIMIT 1 |
0.7 |
0 |
|
|
/modules/ps_googleanalytics/classes/Repository/GanalyticsDataRepository.php:43
/modules/ps_googleanalytics/classes/Handler/GanalyticsDataHandler.php:89 /modules/ps_googleanalytics/classes/Handler/GanalyticsDataHandler.php:55 /modules/ps_googleanalytics/classes/Hook/HookDisplayFooter.php:61 /modules/ps_googleanalytics/ps_googleanalytics.php:134 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:477 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:148 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_pm_advancedsearch` a
LEFT JOIN `ps_pm_advancedsearch_shop` `c` ON a.`id_search` = c.`id_search` AND c.`id_shop` = 1
WHERE (a.`id_search` = 1) LIMIT 1 |
0.7 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /modules/pm_advancedsearch4/classes/Models/Search.php:124 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:98 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4483 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` = 4483 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.7 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5874) AND (b.`id_shop` = 1) LIMIT 1 |
0.7 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5876 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` = 5876 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.7 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4484 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` = 4484 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.7 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5874 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` = 5874 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.7 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4333 LIMIT 1 |
0.7 |
9 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_category FROM `ps_pm_advancedsearch_products_cat` WHERE id_search=1 |
0.7 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:106 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:196 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:254 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
0.7 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /config/config.inc.php:194 /index.php:28
|
SELECT SQL_NO_CACHE pi.*, pl.*
FROM ps_posmegamenu_item pi
LEFT JOIN `ps_posmegamenu_item_lang` pl ON pl.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
LEFT JOIN `ps_posmegamenu_item_shop` ps ON ps.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
WHERE pi.active = 1 AND ps.id_shop = 1 AND pl.id_lang=2 ORDER BY pi.position ASC, pi.id_posmegamenu_item ASC |
0.7 |
12 |
Yes |
|
/modules/posmegamenu/classes/PosMegamenuClass.php:231
/modules/posmegamenu/posmegamenu.php:1160 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang` WHERE `locale` = 'fr-fr' LIMIT 1 |
0.7 |
1 |
|
|
/classes/Language.php:744
/src/Adapter/Currency/CurrencyDataProvider.php:109 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:91 /src/Core/Data/Layer/AbstractDataLayer.php:90 /src/Core/Data/Layer/AbstractDataLayer.php:150 /src/Core/Data/Layer/AbstractDataLayer.php:94 /src/Core/Localization/Currency/CurrencyDataSource.php:67 /src/Core/Localization/Currency/CurrencyDataSource.php:110 /src/Core/Localization/Currency/CurrencyDataSource.php:97 /src/Core/Localization/Currency/Repository.php:95 /src/Core/Localization/Locale/Repository.php:207 /src/Core/Localization/Locale/Repository.php:150 /classes/controller/Controller.php:189 /classes/controller/FrontController.php:271 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4490 LIMIT 1 |
0.7 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE page FROM `ps_pm_advancedsearch_special_pages` WHERE id_search=1 |
0.7 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:68
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:106 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:201 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:254 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:90 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*)
FROM `ps_hook_module` hm
LEFT JOIN `ps_hook` h ON (h.`id_hook` = hm.`id_hook`)
WHERE h.`name` = 'displayHome' AND hm.`id_module` = 20 LIMIT 1 |
0.7 |
1 |
|
|
/classes/module/Module.php:2333
/modules/ps_googleanalytics/classes/Handler/ModuleHandler.php:65 /modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:114 /modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104 /modules/ps_googleanalytics/ps_googleanalytics.php:94 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/FrontController.php:556 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_category` a0
LEFT JOIN `ps_category_lang` `a1` ON (a0.`id_category` = a1.`id_category`)
WHERE (a0.`nleft` < 2) AND (a0.`nright` > 385) AND (a1.`id_lang` = 2)
ORDER BY a0.`nleft` asc |
0.7 |
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:423 /controllers/front/listing/CategoryController.php:230 /classes/controller/FrontController.php:1682 /classes/controller/FrontController.php:499 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 178) AND (b.`id_shop` = 1) LIMIT 1 |
0.7 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ctg.`id_group`
FROM ps_category_group ctg
WHERE ctg.`id_category` = 2 AND ctg.`id_group` = 1 LIMIT 1 |
0.7 |
1 |
|
|
/classes/Category.php:1691
/controllers/front/listing/CategoryController.php:94 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
0.7 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/shop/Shop.php:551 /config/config.inc.php:165 /index.php:28
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4333 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.7 |
9 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4333 |
0.7 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5875
ORDER BY `position` |
0.7 |
2 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4490 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` = 4490 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.7 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4334 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` = 4334 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.7 |
0 |
|
|
/classes/Cart.php:1238
/classes/Product.php:3705 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE tr.*
FROM `ps_tax_rule` tr
JOIN `ps_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 210
AND tr.`id_tax_rules_group` = 6
AND tr.`id_state` IN (0, 0)
AND ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.7 |
1 |
Yes |
|
/classes/tax/TaxRulesTaxManager.php:108
/classes/Product.php:3422 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4484) AND (b.`id_shop` = 1) LIMIT 1 |
0.7 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE tr.*
FROM `ps_tax_rule` tr
JOIN `ps_tax_rules_group` trg ON (tr.`id_tax_rules_group` = trg.`id_tax_rules_group`)
WHERE trg.`active` = 1
AND tr.`id_country` = 210
AND tr.`id_tax_rules_group` = 0
AND tr.`id_state` IN (0, 0)
AND ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.7 |
0 |
|
|
/classes/tax/TaxRulesTaxManager.php:108
/classes/Product.php:3449 /classes/Product.php:3242 /classes/Product.php:4823 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4471 |
0.7 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4471 |
0.7 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4484 |
0.7 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4471
ORDER BY `position` |
0.7 |
2 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5876) AND (b.`id_shop` = 1) LIMIT 1 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4483 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
2 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
0.6 |
3 |
|
|
/classes/Currency.php:932
/classes/Currency.php:949 /classes/module/Module.php:2386 /modules/posstaticblocks/posstaticblocks.php:131 /classes/Hook.php:975 /classes/Hook.php:927 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:76 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:31 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5874
ORDER BY `position` |
0.6 |
2 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4334
ORDER BY `position` |
0.6 |
1 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 3
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.6 |
8 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 3803 |
0.6 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 5875 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 5876 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 110) AND (b.`id_shop` = 1) LIMIT 1 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4488 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 5875 |
0.6 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 112
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.6 |
15 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5876
ORDER BY `position` |
0.6 |
2 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 5874 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4334 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
12 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4471 |
0.6 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 5876 |
0.6 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 5874 |
0.6 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =5876 |
0.6 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4483 |
0.6 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4484
ORDER BY `position` |
0.6 |
2 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE p.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2025-05-11 00:00:00',
INTERVAL 2000 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
WHERE p.id_product = 4334 |
0.6 |
1 |
|
|
/classes/ProductAssembler.php:90
/classes/ProductAssembler.php:107 /classes/controller/ProductListingFrontController.php:54 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4484 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4471 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Currency.php:213 /classes/Currency.php:885 /classes/Tools.php:700 /classes/controller/FrontController.php:351 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4333
ORDER BY `position` |
0.6 |
1 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *, ( IF (`id_group` = 1, 2, 0) + IF (`id_country` = 210, 4, 0) + IF (`id_currency` = 3, 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, 3) AND
`id_country` IN (0, 210) AND
`id_group` IN (0, 1) AND `id_product` = 4490 AND `id_customer` = 0 AND `id_product_attribute` = 0 AND `id_cart` = 0 AND (`from` = '0000-00-00 00:00:00' OR '2025-05-11 00:20:00' >= `from`) AND (`to` = '0000-00-00 00:00:00' OR '2025-05-11 00:20: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 |
0.6 |
1 |
Yes |
|
/classes/SpecificPrice.php:557
/classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4471) AND (b.`id_shop` = 1) LIMIT 1 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE count(id_wishlist_product) FROM ps_wishlist w, ps_wishlist_product wp where w.id_wishlist = wp.id_wishlist and w.id_customer=0 LIMIT 1 |
0.6 |
4785 |
|
|
/modules/blockwishlist/blockwishlist.php:175
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:76 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:31 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_featuredproducts" LIMIT 1 |
0.6 |
1 |
|
|
/classes/module/Module.php:2786
/classes/module/Module.php:2286 /modules/ps_googleanalytics/classes/Handler/ModuleHandler.php:40 /modules/ps_googleanalytics/classes/Handler/ModuleHandler.php:61 /modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:114 /modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104 /modules/ps_googleanalytics/ps_googleanalytics.php:94 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/FrontController.php:556 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (deleted = 0) AND (iso_code = 'USD') LIMIT 1 |
0.6 |
1 |
|
|
/classes/Currency.php:751
/src/Adapter/Currency/CurrencyDataProvider.php:92 /src/Adapter/Currency/CurrencyDataProvider.php:111 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:91 /src/Core/Data/Layer/AbstractDataLayer.php:90 /src/Core/Data/Layer/AbstractDataLayer.php:150 /src/Core/Data/Layer/AbstractDataLayer.php:94 /src/Core/Localization/Currency/CurrencyDataSource.php:67 /src/Core/Localization/Currency/CurrencyDataSource.php:110 /src/Core/Localization/Currency/CurrencyDataSource.php:97 /src/Core/Localization/Currency/Repository.php:95 /src/Core/Localization/Locale/Repository.php:207 /src/Core/Localization/Locale/Repository.php:150 /classes/controller/Controller.php:189 /classes/controller/FrontController.php:271 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 334
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.6 |
3 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =3803 |
0.6 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4490 |
0.6 |
3 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.6 |
7 |
Yes |
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:249 /classes/controller/FrontController.php:1518 /classes/controller/FrontController.php:496 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4483) AND (b.`id_shop` = 1) LIMIT 1 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (deleted = 0) AND (iso_code = 'TND') LIMIT 1 |
0.6 |
1 |
|
|
/classes/Currency.php:751
/src/Adapter/Currency/CurrencyDataProvider.php:92 /src/Adapter/Currency/CurrencyDataProvider.php:111 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:91 /src/Core/Data/Layer/AbstractDataLayer.php:90 /src/Core/Data/Layer/AbstractDataLayer.php:150 /src/Core/Data/Layer/AbstractDataLayer.php:94 /src/Core/Localization/Currency/CurrencyDataSource.php:67 /src/Core/Localization/Currency/CurrencyDataSource.php:110 /src/Core/Localization/Currency/CurrencyDataSource.php:97 /src/Core/Localization/Currency/Repository.php:95 /src/Core/Localization/Locale/Repository.php:207 /src/Core/Localization/Locale/Repository.php:150 /classes/controller/Controller.php:189 /classes/controller/FrontController.php:271 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =5874 |
0.6 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ac.`id_criterion`, acl.`value`, ac.`visible`
FROM `ps_pm_advancedsearch_criterion_1` ac
LEFT JOIN `ps_pm_advancedsearch_criterion_1_lang` acl ON (ac.`id_criterion` = acl.`id_criterion` AND acl.`id_lang` = 2)
WHERE ac.`id_criterion` = 240 LIMIT 1 |
0.6 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:70
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:97 /modules/pm_advancedsearch4/classes/Models/Criterion.php:245 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2266 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4483 LIMIT 1 |
0.6 |
2 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_hook_alias` |
0.6 |
83 |
|
|
/classes/Hook.php:264
/classes/Hook.php:295 /classes/Hook.php:333 /classes/Hook.php:896 /classes/Dispatcher.php:593 /classes/Dispatcher.php:249 /classes/Dispatcher.php:207 /index.php:29
|
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` = 111
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.6 |
14 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 237) AND (b.`id_shop` = 1) LIMIT 1 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4488 |
0.6 |
3 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 302
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.6 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =5875 |
0.6 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4488) AND (b.`id_shop` = 1) LIMIT 1 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4334 |
0.6 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 210) LIMIT 1 |
0.6 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/AddressFormat.php:357 /classes/AddressFormat.php:396 /classes/controller/FrontController.php:1617 /classes/controller/FrontController.php:495 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 3803) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.6 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4484 |
0.5 |
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 5874 LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (deleted = 0) AND (iso_code = 'EUR') LIMIT 1 |
0.5 |
1 |
|
|
/classes/Currency.php:751
/src/Adapter/Currency/CurrencyDataProvider.php:92 /src/Adapter/Currency/CurrencyDataProvider.php:111 /src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:91 /src/Core/Data/Layer/AbstractDataLayer.php:90 /src/Core/Data/Layer/AbstractDataLayer.php:150 /src/Core/Data/Layer/AbstractDataLayer.php:94 /src/Core/Localization/Currency/CurrencyDataSource.php:67 /src/Core/Localization/Currency/CurrencyDataSource.php:110 /src/Core/Localization/Currency/CurrencyDataSource.php:97 /src/Core/Localization/Currency/Repository.php:95 /src/Core/Localization/Locale/Repository.php:207 /src/Core/Localization/Locale/Repository.php:150 /classes/controller/Controller.php:189 /classes/controller/FrontController.php:271 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4495 |
0.5 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM ps_required_field |
0.5 |
1 |
|
|
/classes/ObjectModel.php:1473
/classes/ObjectModel.php:1505 /classes/ObjectModel.php:1436 /classes/controller/FrontController.php:498 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 340
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 175
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
5 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 298
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
8 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
0.5 |
1 |
|
|
/classes/ObjectModel.php:1610
/classes/Group.php:397 /classes/Cart.php:245 /classes/Cart.php:218 /classes/controller/FrontController.php:410 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 5875) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 3803) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 238) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4490) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4488 LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4334) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE * FROM `ps_image` img where img.`rotator` =1 AND img.`id_product` =4333 |
0.5 |
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:231
/classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:101 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:319 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/39/2e/0e/392e0e0850eef863834e9ddb0d9dfe9bb29cc6d6_2.file.product.tpl.php:33 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:383 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:67 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/89/ee/ef/89eeef857f53c3505bf7a2bdecd535420bac9831_2.file.products.tpl.php:40 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:83 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:157 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:84 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:92 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE format
FROM `ps_address_format`
WHERE `id_country` = 210 LIMIT 1 |
0.5 |
1 |
|
|
/classes/AddressFormat.php:629
/classes/AddressFormat.php:591 /classes/AddressFormat.php:576 /classes/AddressFormat.php:520 /classes/AddressFormat.php:395 /classes/controller/FrontController.php:1617 /classes/controller/FrontController.php:495 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 3 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:82
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Currency.php:213 /classes/Currency.php:885 /classes/Tools.php:700 /classes/controller/FrontController.php:351 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4471 LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 239) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4334 LIMIT 1 |
0.5 |
12 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 4334) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Product.php:551 /classes/Link.php:106 /classes/Link.php:174 /classes/Product.php:4763 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/shop/Shop.php:128 /classes/shop/Shop.php:413 /config/config.inc.php:119 /index.php:28
|
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` = 113
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
3 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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 = 4334
ORDER BY f.position ASC |
0.5 |
1 |
Yes |
|
/classes/Product.php:5020
/classes/Product.php:4907 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 141
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 5876) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 138
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 200) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "jprestaspeedpack" LIMIT 1 |
0.5 |
0 |
|
|
/classes/module/Module.php:2786
/classes/module/Module.php:2310 /config/smartyfront.config.inc.php:56 /config/smarty.config.inc.php:59 /config/config.inc.php:202 /index.php:28
|
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` = 163
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 110
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
5 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4333) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4490) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.5 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 5874) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 336
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 301
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4495 LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_country_lang`
WHERE `id_country` = 210 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:82
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/AddressFormat.php:357 /classes/AddressFormat.php:396 /classes/controller/FrontController.php:1617 /classes/controller/FrontController.php:495 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 131
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 130
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 333
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 335
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 5875) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 132
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 303
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 302) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 162
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 124) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 161
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 159
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_currency_shop`
WHERE `id_currency` = 3
AND id_shop = 1 LIMIT 1 |
0.5 |
1 |
|
|
/classes/ObjectModel.php:1610
/classes/Tools.php:707 /classes/controller/FrontController.php:351 /controllers/front/listing/CategoryController.php:92 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 5875 LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 129
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4333
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 5876 LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4484 LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 236) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 230
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 3803
ORDER BY `position` |
0.5 |
1 |
Yes |
|
/classes/Product.php:3059
/src/Adapter/Image/ImageRetriever.php:66 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 5874
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.5 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 137
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 235) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 334) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 285
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
4 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 201) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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` = 310
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 309
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 124
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_pm_advancedsearch_lang`
WHERE `id_search` = 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:82
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /modules/pm_advancedsearch4/classes/Models/Search.php:124 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:98 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:112 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:70 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 301) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 123
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4483) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 3) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /controllers/front/listing/CategoryController.php:200 :undefined /controllers/front/listing/CategoryController.php:214 /controllers/front/listing/CategoryController.php:121 /tools/profiling/Controller.php:214 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4471) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 324
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 119
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 304
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 325
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.5 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4488) |
0.5 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 15) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_lang_shop`
WHERE `id_lang` = 2
AND id_shop = 1 LIMIT 1 |
0.5 |
1 |
|
|
/classes/ObjectModel.php:1610
/classes/Tools.php:580 /classes/Tools.php:662 /classes/Dispatcher.php:242 /classes/Dispatcher.php:207 /index.php:29
|
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` = 138) AND (b.`id_shop` = 1) LIMIT 1 |
0.5 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 305
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4495) |
0.4 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4484 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 310) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 161) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 137) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 111) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 12
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
7 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 131) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 340) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4333) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.4 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4490) |
0.4 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 308
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 130) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 14
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
7 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 19
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_legalcompliance" LIMIT 1 |
0.4 |
0 |
|
|
/classes/module/Module.php:2786
/classes/module/Module.php:2310 /classes/controller/FrontController.php:1552 /classes/controller/FrontController.php:1656 /controllers/front/listing/CategoryController.php:248 /classes/controller/FrontController.php:494 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 163) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 288
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 106
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
4 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 336) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 162) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE pi.*, pl.*
FROM ps_posmegamenu_item pi
LEFT JOIN `ps_posmegamenu_item_lang` pl ON pl.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
LEFT JOIN `ps_posmegamenu_item_shop` ps ON ps.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
WHERE pi.active = 1 AND ps.id_shop = 1 AND pl.id_lang=2 ORDER BY pi.position ASC, pi.id_posmegamenu_item ASC |
0.4 |
12 |
Yes |
|
/modules/posmegamenu/classes/PosMegamenuClass.php:231
/modules/posmegamenu/posmegamenu.php:746 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 290
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 309) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 335) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 4484) |
0.4 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 286
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
2 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/module/Module.php:2311
/classes/controller/FrontController.php:1552 /classes/controller/FrontController.php:1656 /controllers/front/listing/CategoryController.php:248 /classes/controller/FrontController.php:494 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4488) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.4 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4484) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.4 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 307
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 303) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 284
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
3 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 132) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 230) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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
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` = 3803) |
0.4 |
1 |
|
|
/classes/Product.php:3364
/classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 306
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 5876
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 84
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
4 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 112) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4495 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 175) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 5876 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 159) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 26
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
5 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 5874 AND `id_group` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4333 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 141) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4488 |
0.4 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 271) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4471
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 129) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/module/Module.php:2311
/config/smartyfront.config.inc.php:56 /config/smarty.config.inc.php:59 /config/config.inc.php:202 /index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 0 LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:407
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 113) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 119) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 292
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 304) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 291
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 123) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 333) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4495
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 5875 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 282
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 306) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4488 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4495 |
0.4 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4484
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 177
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
4 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps_country`
WHERE `id_country` = 210 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Country.php:401
/classes/AddressFormat.php:595 /classes/AddressFormat.php:576 /classes/AddressFormat.php:520 /classes/AddressFormat.php:395 /classes/controller/FrontController.php:1617 /classes/controller/FrontController.php:495 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4488
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4333 |
0.4 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4483
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 191
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
3 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 17 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 305) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 238
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
4 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 281
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 18
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 283
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
4 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `criterion_group_type`, `display_type`, `range`, `id_criterion_group_linked`, `sort_by`, `sort_way`, `is_combined`, `is_multicriteria`, `visible`
FROM `ps_pm_advancedsearch_criterion_group_1`
WHERE `id_criterion_group` = 3 LIMIT 1 |
0.4 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:70
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:97 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:1983 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:1991 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2163 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 324) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 296
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 308) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 287
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 271 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 5874 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 68
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
5 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4488 AND `id_group` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 16
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 298) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 3803 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 293
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4471 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 294
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 237
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
4 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4495 AND `id_group` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 262
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 236
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
3 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 5874) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.4 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 325) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_tax_lang`
WHERE `id_tax` = 1 |
0.4 |
2 |
|
|
/src/Adapter/EntityMapper.php:82
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/tax/TaxRulesTaxManager.php:115 /classes/Product.php:3422 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4490
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 255
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 5875 AND `id_group` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE *
FROM `ps_tax` a
WHERE (a.`id_tax` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/tax/TaxRulesTaxManager.php:115 /classes/Product.php:3422 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 5875
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 273
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 183
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 108) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4495) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.4 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 273 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4484 |
0.4 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 182
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 339
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 288) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 263
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 5875) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.4 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 344
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_group`
WHERE `id_group` = 1 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Group.php:151
/classes/Product.php:3491 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 15
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 210
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 73
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 285) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 214
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 196
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 290) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 307) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 4490 LIMIT 1 |
0.4 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 267
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 264
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 261
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 140 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 5875 |
0.4 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 338
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 17
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 258
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 259
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 329 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 81
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 109
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 218
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 20
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps_country`
WHERE `id_country` = 210 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Country.php:401
/classes/AddressFormat.php:595 /classes/AddressFormat.php:576 /classes/AddressFormat.php:520 /classes/AddressFormat.php:395 /modules/ps_contactinfo/ps_contactinfo.php:93 /modules/ps_contactinfo/ps_contactinfo.php:81 /classes/Hook.php:975 /classes/Hook.php:927 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:155 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 21
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 209
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 5876 |
0.4 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 192
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 197
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 265
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 266
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 213
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 271
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 14) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 193
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 275
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 268
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 338) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4490 |
0.4 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 107
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 270
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 258) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 294) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 192) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 276
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 3803 AND `id_group` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 287) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 259) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 69
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 329 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 70
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 291) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 263) AND (b.`id_shop` = 1) LIMIT 1 |
0.4 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 19 LIMIT 1 |
0.4 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 280
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 274
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.4 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `criterion_group_type`, `display_type`, `range`, `id_criterion_group_linked`, `sort_by`, `sort_way`, `is_combined`, `is_multicriteria`, `visible`
FROM `ps_pm_advancedsearch_criterion_group_1`
WHERE `id_criterion_group` = 4 LIMIT 1 |
0.4 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:70
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:97 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:1983 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:1991 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2163 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2806 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3053 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:280 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:87 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 4 LIMIT 1 |
0.4 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4333 AND `id_group` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 5876 AND `id_group` = 1 LIMIT 1 |
0.4 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 191) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4483 AND `id_group` = 1 LIMIT 1 |
0.3 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 292) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 5876) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.3 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 4334 |
0.3 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 272
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.3 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 193) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 277
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.3 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 280) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 278
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.3 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `priority`, `id_specific_price_priority`
FROM `ps_specific_price_priority`
WHERE `id_product` = 4334
ORDER BY `id_specific_price_priority` DESC LIMIT 1 |
0.3 |
1 |
|
|
/classes/SpecificPrice.php:246
/classes/SpecificPrice.php:226 /classes/SpecificPrice.php:546 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 5874 |
0.3 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 265) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4471 AND `id_group` = 1 LIMIT 1 |
0.3 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 72
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.3 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 78
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.3 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 293) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 271 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 286) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 339) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 256
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.3 |
1 |
Yes |
Yes |
/classes/Category.php:1135
/modules/posmegamenu/posmegamenu.php:1130 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 296) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 218) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 284) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_product_attribute`
FROM `ps_product_attribute`
WHERE `id_product` = 3803 |
0.3 |
1 |
|
|
/classes/Product.php:2473
/src/Adapter/Image/ImageRetriever.php:72 /src/Adapter/Presenter/Product/ProductLazyArray.php:590 /src/Adapter/Presenter/Product/ProductLazyArray.php:109 /src/Adapter/Presenter/Product/ProductListingPresenter.php:56 /classes/controller/ProductListingFrontController.php:62 :undefined /classes/controller/ProductListingFrontController.php:76 /classes/controller/ProductListingFrontController.php:324 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4483) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.3 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 109) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 196) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 18) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 18 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4484 AND `id_group` = 1 LIMIT 1 |
0.3 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 177) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 183) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 182) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 17) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 266) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 26 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Category.php:1360
/classes/Product.php:4761 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 106) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4334) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.3 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 264) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 26) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 16) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SET group_concat_max_len = 33554432 |
0.3 |
1 |
|
|
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:120
/modules/pm_advancedsearch4/classes/SearchEngineDb.php:29 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:395 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:374 /modules/pm_advancedsearch4/classes/SearchEngineUtils.php:217 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2824 /modules/pm_advancedsearch4/pm_advancedsearch4.php:2958 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /classes/controller/FrontController.php:556 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 19) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `iso_code`
FROM `ps_country`
WHERE `id_country` = 210 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Country.php:274
/src/Core/Addon/Module/ModuleManagerBuilder.php:256 /src/Core/Addon/Module/ModuleManagerBuilder.php:172 /src/Core/Addon/Module/ModuleManagerBuilder.php:87 /classes/Link.php:944 /src/Adapter/Image/ImageRetriever.php:255 /classes/controller/FrontController.php:1518 /classes/controller/FrontController.php:496 /classes/controller/FrontController.php:548 /controllers/front/listing/CategoryController.php:130 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 20) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 261) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 4471) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.3 |
1 |
|
|
/classes/stock/StockAvailable.php:444
/classes/Product.php:3701 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 72) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 107) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 209) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 267) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 275) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 213) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 214) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 12) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 272) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 278) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 270) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 329 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 197) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 282) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 21) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 81) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 281) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 274) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 84) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 210) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 4334 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Pack.php:85
/classes/Product.php:3698 /classes/Product.php:4887 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 262) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 277) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 268) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE `to` BETWEEN '2025-05-11 00:00:00' AND '2025-05-11 23:59:59' LIMIT 1 |
0.3 |
14 |
|
|
/classes/SpecificPrice.php:362
/classes/SpecificPrice.php:529 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 18 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 68) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 273) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 283) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 70) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 78) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 255) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 329 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 256) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4490 AND `id_group` = 1 LIMIT 1 |
0.3 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
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` = 69) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 73) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 276) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
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` = 344) AND (b.`id_shop` = 1) LIMIT 1 |
0.3 |
1 |
|
|
/src/Adapter/EntityMapper.php:75
/classes/ObjectModel.php:264 /tools/profiling/ObjectModel.php:33 /classes/Category.php:150 /modules/posmegamenu/posmegamenu.php:1138 /modules/posmegamenu/posmegamenu.php:1141 /modules/posmegamenu/posmegamenu.php:770 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 12 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE `from` BETWEEN '2025-05-11 00:00:00' AND '2025-05-11 23:59:59' LIMIT 1 |
0.3 |
1 |
|
|
/classes/SpecificPrice.php:358
/classes/SpecificPrice.php:529 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 3803 LIMIT 1 |
0.3 |
1 |
|
|
/classes/SpecificPrice.php:416
/classes/SpecificPrice.php:504 /classes/Product.php:3342 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4484 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4471 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 17 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 11 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4333 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 5 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 4334 AND `id_group` = 1 LIMIT 1 |
0.3 |
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3487 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 273 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4483 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 13 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 9 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4488 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 26 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 7 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4490 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 6 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4495 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 8 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 5875 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE ps.*
FROM ps_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 10 LIMIT 1 |
0.3 |
12 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1183 /modules/posmegamenu/posmegamenu.php:738 /classes/Hook.php:970 /classes/Hook.php:355 /classes/Hook.php:907 /config/smarty.config.inc.php:167 /classes/Smarty/SmartyLazyRegister.php:83 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:168 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/82/bd/85/82bd8560dc3389e7c2140ed70fe83550ebb6ea36_2.file.header.tpl.php:36 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:221 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/a4/6b/89/a46b89bdccdc0fac448d5e2a4cee6d5c1112aeb9_2.file.layout-both-columns.tpl.php:63 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1a/43/40/1a43401f06626878454015e7720c893a8ef5e23a_2.file.layout-left-column.tpl.php:38 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/66/40/f6/6640f6d746b8ca7021174734f1d0cb3fc75d2c66_2.file.product-list.tpl.php:37 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:125 /var/cache/prod/smarty/compile/layouts_layout_left_column_tpl/1b/e2/b5/1be2b52dec2b117aacc6bff1a94986c828c4c7f2_2.file.category.tpl.php:34 /vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 /vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232 /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 /classes/controller/FrontController.php:683 /classes/controller/FrontController.php:667 /tools/profiling/Controller.php:716 /tools/profiling/Controller.php:255 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 4334 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 140 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 3803 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 271 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 329 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 5874 AND id_shop=1 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 2 AND id_category = 19 LIMIT 1 |
0.3 |
1 |
|
|
/classes/Product.php:4762
/classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 5876 AND id_shop=1 LIMIT 1 |
0.2 |
1 |
|
|
/classes/Product.php:5694
/classes/Product.php:3421 /classes/Product.php:3242 /classes/Product.php:4787 /classes/Product.php:4990 /override/classes/Product.php:21 /modules/pm_advancedsearch4/pm_advancedsearch4.php:3397 /modules/pm_advancedsearch4/classes/SearchProvider/FullTree.php:81 /classes/controller/ProductListingFrontController.php:308 /classes/controller/ProductListingFrontController.php:580 /controllers/front/listing/CategoryController.php:137 /tools/profiling/Controller.php:233 /classes/Dispatcher.php:515 /index.php:29
|