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`) |
3896
ms
|
1472 |
|
|
/classes/Configuration.php:160
/classes/Configuration.php:209<br>/classes/Configuration.php:297<br>/classes/shop/Shop.php:384<br>/config/config.inc.php:128<br>/index.php:27
|
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` |
2102
ms
|
194 |
Yes
|
Yes
|
/classes/Hook.php:1183
/classes/Hook.php:731<br>/classes/Hook.php:815<br>/classes/Dispatcher.php:603<br>/classes/Dispatcher.php:256<br>/classes/Dispatcher.php:214<br>/index.php:28
|
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 |
2030
ms
|
0 |
|
|
/classes/Hook.php:1243
/classes/Hook.php:222<br>/classes/Hook.php:557<br>/classes/module/Module.php:2369<br>/modules/ps_googleanalytics/classes/Handler/ModuleHandler.php:65<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:114<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.id_hook, h.name as h_name, title, description, h.position, hm.position as hm_position, m.id_module, m.name, m.active
FROM `ps_hook_module` hm
STRAIGHT_JOIN `ps_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `ps_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
1647
ms
|
519 |
|
|
/classes/Hook.php:504
/classes/Hook.php:544<br>/classes/tax/TaxManagerFactory.php:67<br>/classes/tax/TaxManagerFactory.php:46<br>/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) AS quantity, IFNULL(product_attribute_shop.id_product_attribute, 0) AS id_product_attribute,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, pl.`description`, pl.`description_short`, pl.`available_now`,
pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, image_shop.`id_image` id_image,
il.`legend` as legend, m.`name` AS manufacturer_name, cl.`name` AS category_default,
DATEDIFF(product_shop.`date_add`, DATE_SUB("2026-02-12 00:00:00",
INTERVAL 60 DAY)) > 0 AS new, product_shop.price AS orderprice
FROM `ps_category_product` cp
LEFT JOIN `ps_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_product_attribute_shop` product_attribute_shop
ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=1)
LEFT JOIN ps_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
LEFT JOIN `ps_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 4 AND cl.id_shop = 1 )
LEFT JOIN `ps_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 4 AND pl.id_shop = 1 )
LEFT JOIN `ps_image_shop` image_shop
ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=1)
LEFT JOIN `ps_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 4)
LEFT JOIN `ps_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY cp.`position` ASC
LIMIT 0,8 |
1173
ms
|
160 |
|
|
/classes/Category.php:1057
/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW TABLES LIKE "ps_correos_oficial_saved_orders" |
965
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:282
/modules/correosoficialtools/correosoficialtools.php:57<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE lower(name) as name
FROM `ps_hook` h
WHERE (h.active = 1) |
823
ms
|
817 |
|
|
/classes/Hook.php:1283
/classes/Hook.php:786<br>/classes/Dispatcher.php:603<br>/classes/Dispatcher.php:256<br>/classes/Dispatcher.php:214<br>/index.php:28
|
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 |
677
ms
|
124 |
Yes
|
|
/classes/Dispatcher.php:650
/classes/Dispatcher.php:256<br>/classes/Dispatcher.php:214<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `ps_hook` |
673
ms
|
817 |
|
|
/classes/Hook.php:1243
/classes/Hook.php:222<br>/classes/Hook.php:824<br>/classes/Dispatcher.php:364<br>/index.php:28
|
SHOW COLUMNS FROM `ps_correos_oficial_saved_orders` LIKE 'label' |
535
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:292
/modules/correosoficialtools/correosoficialtools.php:57<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-addons' LIMIT 1 |
519
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1818<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
UPDATE `ps_tab` SET `id_parent` = '243',`active` = '1' WHERE class_name = "AdminCorreosOficialCronProcess" |
518
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:441
/modules/correosoficialtools/correosoficialtools.php:61<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 220 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` = 220 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
509
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 467 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` = 467 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
486
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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 |
473
ms
|
126 |
|
|
/classes/module/Module.php:340
/modules/iqitthemeeditor/iqitthemeeditor.php:40<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:521<br>/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` = 252
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 220 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` = 252
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 220 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
445
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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 |
421
ms
|
126 |
|
|
/classes/module/Module.php:340
/modules/ps_mbo/ps_mbo.php:189<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/Dispatcher.php:364<br>/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` = 456 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` = 456 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
417
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 221) AND (b.`id_shop` = 1) LIMIT 1 |
397
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW COLUMNS FROM `ps_correos_oficial_saved_returns` LIKE 'label' |
393
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:293
/modules/correosoficialtools/correosoficialtools.php:57<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 391 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` = 391 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
387
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 221 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` = 221 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
383
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
382
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 220) AND (b.`id_shop` = 1) LIMIT 1 |
371
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 220
AND pac.`id_product_attribute` = 252
AND agl.`id_lang` = 4 |
367
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 179 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` = 179 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
351
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 457
AND pac.`id_product_attribute` = 9552
AND agl.`id_lang` = 4 |
350
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 |
344
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:711
/classes/shop/Shop.php:770<br>/classes/Configuration.php:294<br>/classes/shop/Shop.php:384<br>/config/config.inc.php:128<br>/index.php:27
|
(SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 4)
WHERE (cr.`id_customer` = 0
OR (cr.`id_customer` = 0 AND (cr.`highlight` = 1 OR cr.`code` = "")))
AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND cr.`quantity` > 0 AND highlight = 1 AND code NOT LIKE "BO_ORDER_%") |
341
ms
|
1 |
|
|
/classes/CartRule.php:444
/classes/CartRule.php:555<br>/classes/Cart.php:546<br>/src/Adapter/Presenter/Cart/CartPresenter.php:445<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/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` = 248
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 221 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` = 248
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 221 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
341
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
(SELECT 1 FROM `ps_cart_rule` WHERE date_to >= "2026-02-12 00:00:00" AND date_to <= "2026-02-12 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from >= "2026-02-12 00:00:00" AND date_from <= "2026-02-12 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from < "2026-02-12 00:00:00" AND date_to > "2026-02-12 23:59:59" AND `id_customer` IN (0,0) LIMIT 1) LIMIT 1 |
335
ms
|
1 |
|
|
/classes/CartRule.php:383
/classes/CartRule.php:416<br>/classes/CartRule.php:555<br>/classes/Cart.php:546<br>/src/Adapter/Presenter/Cart/CartPresenter.php:445<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 457 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` = 457 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
333
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 220
ORDER BY f.position ASC |
331
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 467) AND (b.`id_shop` = 1) LIMIT 1 |
329
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 9552
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 457 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` = 9552
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 457 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
319
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 467) LIMIT 1 |
318
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 456
AND pac.`id_product_attribute` = 9556
AND agl.`id_lang` = 4 |
316
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 391) AND (b.`id_shop` = 1) LIMIT 1 |
310
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 220) LIMIT 1 |
309
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
(SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 4)
WHERE (cr.`id_customer` = 0
OR (cr.`id_customer` = 0 AND (cr.`highlight` = 1 OR cr.`code` = "")))
AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND cr.`quantity` > 0 AND highlight = 1 AND code NOT LIKE "BO_ORDER_%") |
307
ms
|
1 |
|
|
/classes/CartRule.php:444
/classes/CartRule.php:555<br>/classes/Cart.php:546<br>/src/Adapter/Presenter/Cart/CartPresenter.php:445<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 302
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 179 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` = 302
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 179 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
304
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 9556
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 456 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` = 9556
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 456 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
302
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 1624
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 467 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` = 1624
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 467 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
299
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
(SELECT 1 FROM `ps_cart_rule` WHERE date_to >= "2026-02-12 00:00:00" AND date_to <= "2026-02-12 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from >= "2026-02-12 00:00:00" AND date_from <= "2026-02-12 23:59:59" AND `id_customer` IN (0,0) LIMIT 1)UNION ALL (SELECT 1 FROM `ps_cart_rule` WHERE date_from < "2026-02-12 00:00:00" AND date_to > "2026-02-12 23:59:59" AND `id_customer` IN (0,0) LIMIT 1) LIMIT 1 |
298
ms
|
1 |
|
|
/classes/CartRule.php:383
/classes/CartRule.php:416<br>/classes/Cart.php:3021<br>/override/classes/Cart.php:10<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 469 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` = 469 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
297
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 457) AND (b.`id_shop` = 1) LIMIT 1 |
296
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
(SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 4)
WHERE (cr.`id_customer` = 0
OR (cr.`id_customer` = 0 AND (cr.`highlight` = 1 OR cr.`code` = "")))
AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND cr.`quantity` > 0 AND highlight = 1 AND code NOT LIKE "BO_ORDER_%") |
295
ms
|
1 |
|
|
/classes/CartRule.php:444
/classes/CartRule.php:555<br>/classes/Cart.php:546<br>/src/Adapter/Presenter/Cart/CartPresenter.php:445<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/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` = 1569
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 391 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` = 1569
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 391 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
293
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 221
AND pac.`id_product_attribute` = 248
AND agl.`id_lang` = 4 |
293
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 179
AND pac.`id_product_attribute` = 302
AND agl.`id_lang` = 4 |
292
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
290
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 6
AND tr.`id_tax_rules_group` = 10
AND tr.`id_state` IN (0, 322)
AND ('08720' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '08720')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
287
ms
|
2 |
|
|
/classes/tax/TaxRulesTaxManager.php:109
/classes/Product.php:3895<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 |
286
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Tools.php:704<br>/classes/controller/FrontController.php:384<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 6
AND tr.`id_tax_rules_group` = 10
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 |
286
ms
|
1 |
|
|
/classes/tax/TaxRulesTaxManager.php:109
/classes/Product.php:5856<br>/classes/Product.php:5800<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 1636
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 469 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` = 1636
AND cp.`id_customization` = 0
AND cp.`id_cart` = 0 AND p.`id_product_item` = 469 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
283
ms
|
0 |
|
|
/classes/Cart.php:1429
/classes/Product.php:4285<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
(SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 4)
WHERE (cr.`id_customer` = 0
OR (cr.`id_customer` = 0 AND (cr.`highlight` = 1 OR cr.`code` = "")))
AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND free_shipping = 1 AND carrier_restriction = 1) |
281
ms
|
1 |
|
|
/classes/CartRule.php:444
/classes/Cart.php:3021<br>/override/classes/Cart.php:10<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 'univolei.com' OR su.domain_ssl = 'univolei.com')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
274
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:1350
/classes/shop/Shop.php:341<br>/config/config.inc.php:128<br>/index.php:27
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 391) |
273
ms
|
2 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 469
ORDER BY f.position ASC |
272
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 179) AND (b.`id_shop` = 1) LIMIT 1 |
272
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 467
AND pac.`id_product_attribute` = 1624
AND agl.`id_lang` = 4 |
269
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 179
ORDER BY f.position ASC |
264
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 391
ORDER BY f.position ASC |
261
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 391
AND pac.`id_product_attribute` = 1569
AND agl.`id_lang` = 4 |
259
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
258
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/shop/Shop.php:132<br>/classes/shop/Shop.php:415<br>/config/config.inc.php:128<br>/index.php:27
|
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 4)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 4)
WHERE pa.`id_product` = 469
AND pac.`id_product_attribute` = 1636
AND agl.`id_lang` = 4 |
257
ms
|
1 |
|
|
/classes/Product.php:7406
/classes/Product.php:5793<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 469) AND (b.`id_shop` = 1) LIMIT 1 |
256
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 456
ORDER BY f.position ASC |
256
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 220 AND pa.`id_product` = 220 AND pa.`id_product_attribute` = 252 LIMIT 1 |
254
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 456) AND (b.`id_shop` = 1) LIMIT 1 |
254
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/classes/Link.php:114<br>/classes/Link.php:190<br>/classes/Product.php:5623<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_trustedshops_channel
FROM `ps_trustedshops_channel`
WHERE (id_client = '9cc15b06d386__PrestaShop') AND (id_lang = 4) AND (id_shop = 1) LIMIT 1 |
251
ms
|
1 |
|
|
/modules/trustedshopseasyintegration/src/Repository/ChannelRepository.php:99
/modules/trustedshopseasyintegration/src/Service/ChannelService.php:708<br>/modules/trustedshopseasyintegration/src/Service/HookService.php:129<br>/modules/trustedshopseasyintegration/src/Hook/HookCommon.php:88<br>:undefined<br>/modules/trustedshopseasyintegration/vendor/totpsclasslib/src/Hook/AbstractHookDispatcher.php:108<br>/modules/trustedshopseasyintegration/src/Utils/ModuleTrait.php:183<br>/modules/trustedshopseasyintegration/trustedshopseasyintegration.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 467) |
246
ms
|
3 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
244
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 221
ORDER BY f.position ASC |
244
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`id_product_attribute`
FROM `ps_stock_available` sa LEFT JOIN `ps_product_attribute` pa ON sa.`id_product_attribute` = pa.`id_product_attribute`
WHERE sa.`id_product` = 467 AND sa.`id_product_attribute` <> 0 AND pa.default_on = 1 LIMIT 1 |
243
ms
|
5 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:647
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-polyfold-addon' LIMIT 1 |
242
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 220) |
240
ms
|
2 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 391) LIMIT 1 |
235
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 221
AND image_shop.`cover` = 1 LIMIT 1 |
230
ms
|
1 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
230
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 221) LIMIT 1 |
230
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 467
ORDER BY f.position ASC |
228
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-whiteboard-addon' LIMIT 1 |
225
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 457) LIMIT 1 |
223
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `name`, `alias` FROM `ps_hook_alias` |
222
ms
|
93 |
|
|
/classes/Hook.php:301
/classes/Hook.php:332<br>/classes/Hook.php:742<br>/classes/Hook.php:815<br>/classes/Dispatcher.php:603<br>/classes/Dispatcher.php:256<br>/classes/Dispatcher.php:214<br>/index.php:28
|
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 = 4)
LEFT JOIN ps_feature_value_lang fvl ON (fvl.id_feature_value = pf.id_feature_value AND fvl.id_lang = 4)
LEFT JOIN ps_feature f ON (f.id_feature = pf.id_feature AND fl.id_lang = 4)
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 = 457
ORDER BY f.position ASC |
221
ms
|
1 |
Yes
|
|
/classes/Product.php:5905
/classes/Product.php:5767<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 469) LIMIT 1 |
218
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`id_product_attribute`
FROM `ps_stock_available` sa LEFT JOIN `ps_product_attribute` pa ON sa.`id_product_attribute` = pa.`id_product_attribute`
WHERE sa.`id_product` = 391 AND sa.`id_product_attribute` <> 0 AND pa.default_on = 1 LIMIT 1 |
218
ms
|
3 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:647
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 179) LIMIT 1 |
215
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`id_product_attribute`
FROM `ps_stock_available` sa LEFT JOIN `ps_product_attribute` pa ON sa.`id_product_attribute` = pa.`id_product_attribute`
WHERE sa.`id_product` = 467 AND sa.`id_product_attribute` <> 0 AND pa.default_on = 1 LIMIT 1 |
214
ms
|
5 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:647
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 248 LIMIT 1 |
213
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 |
213
ms
|
16 |
|
|
/classes/Language.php:1198
/classes/Language.php:1502<br>/classes/Dispatcher.php:548<br>/classes/Dispatcher.php:245<br>/classes/Dispatcher.php:214<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
210
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
208
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
208
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Adapter/Presenter/Cart/CartPresenter.php:374<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_orders WHERE Key_name = 'idx_correos_oficial_orders_id_order' |
208
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 |
207
ms
|
1 |
|
|
/classes/Cart.php:4218
/classes/Cart.php:4193<br>/classes/Cart.php:2134<br>/src/Adapter/Presenter/Cart/CartPresenter.php:334<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 9556) LIMIT 1 |
207
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 252) LIMIT 1 |
207
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_tab FROM ps_tab WHERE class_name = "SELL" LIMIT 1 |
203
ms
|
435 |
|
|
/modules/correosoficialtools/correosoficialtools.php:432
/modules/correosoficialtools/correosoficialtools.php:61<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 220
AND image_shop.`cover` = 1 LIMIT 1 |
203
ms
|
2 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM ps_meta m
LEFT JOIN ps_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "index"
OR m.page = "index"
)
AND ml.id_lang = 4
AND ml.id_shop = 1 LIMIT 1 |
202
ms
|
1 |
|
|
/classes/Meta.php:190
/classes/Meta.php:329<br>/classes/Meta.php:314<br>/classes/controller/FrontController.php:1689<br>/classes/controller/FrontController.php:528<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 457
AND image_shop.`cover` = 1 LIMIT 1 |
201
ms
|
1 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_trustedshops_channel
FROM `ps_trustedshops_channel`
WHERE (id_client = '9cc15b06d386__PrestaShop') AND (id_lang = 4) AND (id_shop = 1) LIMIT 1 |
201
ms
|
1 |
|
|
/modules/trustedshopseasyintegration/src/Repository/ChannelRepository.php:99
/modules/trustedshopseasyintegration/src/Service/ChannelService.php:708<br>/modules/trustedshopseasyintegration/src/Service/HookService.php:113<br>/modules/trustedshopseasyintegration/src/Hook/HookLayout.php:315<br>/modules/trustedshopseasyintegration/src/Hook/HookLayout.php:230<br>:undefined<br>/modules/trustedshopseasyintegration/vendor/totpsclasslib/src/Hook/AbstractHookDispatcher.php:108<br>/modules/trustedshopseasyintegration/src/Utils/ModuleTrait.php:183<br>/modules/trustedshopseasyintegration/trustedshopseasyintegration.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:106<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:44<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 1624 LIMIT 1 |
199
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/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` = 4
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 6) LIMIT 1 |
199
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/config/config.inc.php:157<br>/index.php:27
|
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` = 4
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 |
199
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Category.php:160<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:116<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 221) |
199
ms
|
2 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 220 AND `id_shop` = 1 |
198
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_shop_url` a0 |
195
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:438<br>/classes/Tools.php:2494<br>/modules/sendinblue/services/ConfigService.php:324<br>/modules/sendinblue/services/ConfigService.php:122<br>/modules/sendinblue/services/ConfigService.php:138<br>/modules/sendinblue/sendinblue.php:203<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:438<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
194
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 179) |
194
ms
|
4 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 456) LIMIT 1 |
193
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 457 AND `id_shop` = 1 |
192
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`id_product_attribute`
FROM `ps_stock_available` sa LEFT JOIN `ps_product_attribute` pa ON sa.`id_product_attribute` = pa.`id_product_attribute`
WHERE sa.`id_product` = 467 AND sa.`id_product_attribute` <> 0 AND pa.default_on = 1 LIMIT 1 |
192
ms
|
5 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:647
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 179 LIMIT 1 |
191
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
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 |
189
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/src/Adapter/Currency/CurrencyDataProvider.php:101<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
188
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 457) |
188
ms
|
4 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 391 AND `id_shop` = 1 |
186
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 6
AND tr.`id_tax_rules_group` = 0
AND tr.`id_state` IN (0, 322)
AND ('08720' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '08720')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
186
ms
|
0 |
|
|
/classes/tax/TaxRulesTaxManager.php:109
/classes/Product.php:3921<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5676<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_orders WHERE Key_name = 'idx_correos_oficial_orders_date_add' |
186
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 248 LIMIT 1 |
185
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`id_product_attribute`
FROM `ps_stock_available` sa LEFT JOIN `ps_product_attribute` pa ON sa.`id_product_attribute` = pa.`id_product_attribute`
WHERE sa.`id_product` = 391 AND sa.`id_product_attribute` <> 0 AND pa.default_on = 1 LIMIT 1 |
185
ms
|
3 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:647
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "hidecombinations" LIMIT 1 |
184
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/modules/hidecombinations/hidecombinations.php:194<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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) |
184
ms
|
4 |
|
|
/classes/Language.php:1049
/config/config.inc.php:154<br>/index.php:27
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 179 AND pa.`id_product` = 179 AND pa.`id_product_attribute` = 302 LIMIT 1 |
183
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 302) LIMIT 1 |
183
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4) LIMIT 1 |
182
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/config/config.inc.php:222<br>/index.php:27
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
182
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
181
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 469 AND pa.`id_product` = 469 AND pa.`id_product_attribute` = 1636 LIMIT 1 |
181
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 467 AND `id_shop` = 1 |
181
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 456) |
179
ms
|
4 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-global-settings' LIMIT 1 |
178
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/includes/functions.class.php:48<br>/modules/revsliderprestashop/public/revslider-front.class.php:157<br>/modules/revsliderprestashop/rev-loader.php:735<br>/modules/revsliderprestashop/revsliderprestashop.php:631<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE * FROM ps_revslider_sliders |
178
ms
|
1 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:214
/modules/revsliderprestashop/revsliderprestashop.php:582<br>/modules/revsliderprestashop/revsliderprestashop.php:334<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 391
AND image_shop.`cover` = 1 LIMIT 1 |
177
ms
|
1 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 |
177
ms
|
1 |
|
|
/classes/shop/Shop.php:205
/classes/shop/Shop.php:135<br>/classes/shop/Shop.php:415<br>/config/config.inc.php:128<br>/index.php:27
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 467
AND image_shop.`cover` = 1 LIMIT 1 |
174
ms
|
1 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
173
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 221 AND pa.`id_product` = 221 AND pa.`id_product_attribute` = 248 LIMIT 1 |
173
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 221 AND `id_shop` = 1 |
171
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
170
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 456 AND pa.`id_product` = 456 AND pa.`id_product_attribute` = 9556 LIMIT 1 |
170
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 9552) LIMIT 1 |
170
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_orders WHERE Key_name = 'idx_correos_oficial_orders_shipping_number' |
170
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_saved_orders WHERE Key_name = 'idx_correos_oficial_saved_orders_id_order' |
168
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 |
168
ms
|
3 |
|
|
/classes/Currency.php:1126
/classes/Currency.php:1143<br>/classes/module/Module.php:2423<br>/modules/iqitelementor/iqitelementor.php:553<br>/classes/Hook.php:1017<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_shop` `product_attribute_shop` ON (product_attribute_shop.id_product = p.id_product AND product_attribute_shop.id_shop = 1)
WHERE (p.`id_product` = 469) |
167
ms
|
2 |
|
|
/classes/Product.php:3829
/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 248) LIMIT 1 |
167
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name, alias FROM `ps_hook_alias` |
167
ms
|
93 |
|
|
/classes/Hook.php:353
/classes/Hook.php:158<br>/classes/Hook.php:377<br>/classes/Hook.php:400<br>/classes/Hook.php:933<br>/classes/Dispatcher.php:364<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_trustedshops_channel` a
WHERE (a.`id_trustedshops_channel` = 1) LIMIT 1 |
167
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/modules/trustedshopseasyintegration/src/Service/ChannelService.php:717<br>/modules/trustedshopseasyintegration/src/Service/HookService.php:129<br>/modules/trustedshopseasyintegration/src/Hook/HookCommon.php:88<br>:undefined<br>/modules/trustedshopseasyintegration/vendor/totpsclasslib/src/Hook/AbstractHookDispatcher.php:108<br>/modules/trustedshopseasyintegration/src/Utils/ModuleTrait.php:183<br>/modules/trustedshopseasyintegration/trustedshopseasyintegration.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_tax_lang`
WHERE `id_tax` = 11 |
166
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/tax/TaxRulesTaxManager.php:116<br>/classes/Product.php:3895<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 467 AND pa.`id_product` = 467 AND pa.`id_product_attribute` = 1624 LIMIT 1 |
165
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_pickups_returns WHERE Key_name = 'idx_correos_oficial_pickups_returns_id_order' |
164
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE h.* FROM `ps_hidecombinations_configuration` h WHERE h.`id_shop` = 1
AND h.`active` = 1 AND (date_from <= "2026-02-12 22:12:26" OR date_from = "0000-00-00 00:00:00") AND (date_to >= "2026-02-12 22:12:26" OR date_to = "0000-00-00 00:00:00") |
164
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:189
/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
163
ms
|
8 |
Yes
|
|
/classes/ImageType.php:109
/src/Adapter/Image/ImageRetriever.php:283<br>/classes/controller/FrontController.php:1536<br>/classes/controller/FrontController.php:1652<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 1569) LIMIT 1 |
162
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-backup-addon' LIMIT 1 |
162
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitcookielaw" LIMIT 1 |
161
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:551<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:156<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 6) LIMIT 1 |
159
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/AddressFormat.php:404<br>/classes/AddressFormat.php:439<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitmegamenu" LIMIT 1 |
159
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:48<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
159
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
159
ms
|
4 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_trustedshops_channel
FROM `ps_trustedshops_channel`
WHERE (id_client = '9cc15b06d386__PrestaShop') AND (id_lang = 4) AND (id_shop = 1) LIMIT 1 |
158
ms
|
1 |
|
|
/modules/trustedshopseasyintegration/src/Repository/ChannelRepository.php:99
/modules/trustedshopseasyintegration/src/Service/ChannelService.php:708<br>/modules/trustedshopseasyintegration/src/Service/HookService.php:113<br>/modules/trustedshopseasyintegration/src/Hook/HookLayout.php:315<br>/modules/trustedshopseasyintegration/src/Hook/HookLayout.php:89<br>:undefined<br>/modules/trustedshopseasyintegration/vendor/totpsclasslib/src/Hook/AbstractHookDispatcher.php:108<br>/modules/trustedshopseasyintegration/src/Utils/ModuleTrait.php:183<br>/modules/trustedshopseasyintegration/trustedshopseasyintegration.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-global-settings' LIMIT 1 |
158
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/includes/functions.class.php:48<br>/modules/revsliderprestashop/includes/functions.class.php:1072<br>/modules/revsliderprestashop/includes/functions.class.php:1057<br>/modules/revsliderprestashop/public/revslider-front.class.php:173<br>/modules/revsliderprestashop/rev-loader.php:735<br>/modules/revsliderprestashop/revsliderprestashop.php:631<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 469
AND image_shop.`cover` = 1 LIMIT 1 |
158
ms
|
1 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE domain, domain_ssl
FROM ps_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
158
ms
|
1 |
|
|
/classes/shop/ShopUrl.php:182
/classes/shop/ShopUrl.php:198<br>/classes/Tools.php:333<br>/classes/Link.php:66<br>/config/config.inc.php:284<br>/index.php:27
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 179
AND image_shop.`cover` = 1 LIMIT 1 |
158
ms
|
1 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 391 AND pa.`id_product` = 391 AND pa.`id_product_attribute` = 1569 LIMIT 1 |
157
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE * FROM `ps_currency` c ORDER BY `iso_code` ASC |
157
ms
|
3 |
Yes
|
|
/classes/Currency.php:709
/src/Adapter/Currency/CurrencyDataProvider.php:84<br>/src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:90<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 1636) LIMIT 1 |
157
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1624 LIMIT 1 |
157
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-global-settings' LIMIT 1 |
156
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/includes/functions.class.php:48<br>/modules/revsliderprestashop/includes/functions.class.php:899<br>/modules/revsliderprestashop/public/revslider-front.class.php:173<br>/modules/revsliderprestashop/rev-loader.php:735<br>/modules/revsliderprestashop/revsliderprestashop.php:631<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 456) AND (id_product_attribute = 9556) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
156
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
155
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/src/Adapter/Currency/CurrencyDataProvider.php:101<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 457 AND pa.`id_product` = 457 AND pa.`id_product_attribute` = 9552 LIMIT 1 |
154
ms
|
1 |
|
|
/classes/Product.php:1138
/classes/Product.php:5761<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_products WHERE Key_name = 'idx_correos_oficial_products_company' |
154
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE data
FROM `ps_ganalytics_data`
WHERE id_cart = 0
AND id_shop = 1 LIMIT 1 |
153
ms
|
0 |
|
|
/modules/ps_googleanalytics/classes/Repository/GanalyticsDataRepository.php:43
/modules/ps_googleanalytics/classes/Handler/GanalyticsDataHandler.php:89<br>/modules/ps_googleanalytics/classes/Handler/GanalyticsDataHandler.php:55<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayFooter.php:61<br>/modules/ps_googleanalytics/ps_googleanalytics.php:134<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:551<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:156<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1624 LIMIT 1 |
153
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
153
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 252 LIMIT 1 |
152
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_requests WHERE Key_name = 'idx_correos_oficial_requests_reference_code' |
151
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_senders WHERE Key_name = 'idx_correos_oficial_senders_id' |
151
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 2 LIMIT 1 |
151
ms
|
0 |
|
|
/classes/Category.php:1371
/classes/Product.php:751<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_featuredproducts" LIMIT 1 |
150
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2303<br>/modules/ps_googleanalytics/classes/Handler/ModuleHandler.php:40<br>/modules/ps_googleanalytics/classes/Handler/ModuleHandler.php:61<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:114<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 0 LIMIT 1 |
150
ms
|
1 |
|
|
/classes/SpecificPrice.php:411
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 252 LIMIT 1 |
149
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 220) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
149
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-global-settings' LIMIT 1 |
149
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/includes/functions.class.php:48<br>/modules/revsliderprestashop/public/revslider-front.class.php:54<br>/modules/revsliderprestashop/rev-loader.php:735<br>/modules/revsliderprestashop/revsliderprestashop.php:604<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_senders WHERE Key_name = 'idx_correos_oficial_senders_id_shop' |
148
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 2 LIMIT 1 |
148
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_trustedshops_channel
FROM `ps_trustedshops_channel`
WHERE (id_client = '9cc15b06d386__PrestaShop') AND (id_lang = 4) AND (id_shop = 1) LIMIT 1 |
148
ms
|
1 |
|
|
/modules/trustedshopseasyintegration/src/Repository/ChannelRepository.php:99
/modules/trustedshopseasyintegration/src/Service/ChannelService.php:708<br>/modules/trustedshopseasyintegration/src/Service/HookService.php:113<br>/modules/trustedshopseasyintegration/src/Hook/HookLayout.php:315<br>/modules/trustedshopseasyintegration/src/Hook/HookLayout.php:256<br>:undefined<br>/modules/trustedshopseasyintegration/vendor/totpsclasslib/src/Hook/AbstractHookDispatcher.php:108<br>/modules/trustedshopseasyintegration/src/Utils/ModuleTrait.php:183<br>/modules/trustedshopseasyintegration/trustedshopseasyintegration.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:98<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/51/ae/ed/51aeedfe3637951dccce740e67d838b843b9d10c_2.file.footer.tpl.php:32<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:517<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-typewriter-addon' LIMIT 1 |
148
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_products WHERE Key_name = 'idx_correos_oficial_products_id' |
148
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 391 LIMIT 1 |
147
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 456
AND image_shop.`cover` = 1 LIMIT 1 |
147
ms
|
1 |
|
|
/classes/Product.php:3542
/classes/Product.php:5606<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 469 AND `id_shop` = 1 |
147
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE format
FROM `ps_address_format`
WHERE `id_country` = 6 LIMIT 1 |
146
ms
|
1 |
|
|
/classes/AddressFormat.php:672
/classes/AddressFormat.php:634<br>/classes/AddressFormat.php:619<br>/classes/AddressFormat.php:563<br>/classes/AddressFormat.php:438<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 233 AND `id_shop` = 1 LIMIT 1 |
145
ms
|
1 |
|
|
/classes/module/Module.php:2328
/modules/hidecombinations/hidecombinations.php:194<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 179 AND `id_shop` = 1 |
143
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_requests WHERE Key_name = 'idx_correos_oficial_requests_id_cart' |
142
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
142
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 220) AND (id_product_attribute = 252) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
142
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_zone`
FROM `ps_country`
WHERE `id_country` = 6 LIMIT 1 |
141
ms
|
1 |
|
|
/classes/Country.php:223
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:208<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_products WHERE Key_name = 'idx_correos_oficial_products_id_carrier' |
141
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 1624) LIMIT 1 |
140
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Combination.php:139<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 252 LIMIT 1 |
140
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 467) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
140
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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` = 4
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 2) LIMIT 1 |
139
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/src/Adapter/Currency/CurrencyDataProvider.php:101<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 220 AND id_shop=1 LIMIT 1 |
139
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_saved_returns WHERE Key_name = 'idx_correos_oficial_saved_returns_exp_number' |
139
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 220) AND (id_product_attribute = 252) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
138
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-maintenance-addon' LIMIT 1 |
138
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
138
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/shop/Shop.php:557<br>/config/config.inc.php:182<br>/index.php:27
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 467 |
138
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_saved_returns WHERE Key_name = 'idx_correos_oficial_saved_returns_id_order' |
138
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1570 LIMIT 1 |
137
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
137
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
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 |
137
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Group.php:81<br>/classes/Group.php:397<br>/classes/Cart.php:248<br>/classes/Cart.php:221<br>/classes/controller/FrontController.php:443<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `iso_code`
FROM `ps_country`
WHERE `id_country` = 6 LIMIT 1 |
137
ms
|
1 |
|
|
/classes/Country.php:274
/src/Core/Addon/Module/ModuleManagerBuilder.php:260<br>/src/Core/Addon/Module/ModuleManagerBuilder.php:181<br>/src/Core/Addon/Module/ModuleManagerBuilder.php:92<br>/classes/Link.php:997<br>/src/Adapter/Image/ImageRetriever.php:289<br>/classes/controller/FrontController.php:1536<br>/classes/controller/FrontController.php:1652<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE * FROM ps_hook_module
WHERE `id_hook` = 9
AND `id_module` = 183
AND `id_shop` = 1 |
137
ms
|
1 |
|
|
/classes/Hook.php:566
/classes/module/Module.php:2369<br>/modules/ps_googleanalytics/classes/Handler/ModuleHandler.php:65<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:114<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1569 LIMIT 1 |
136
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_senders WHERE Key_name = 'idx_correos_oficial_senders_sender_default' |
136
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-static-css' LIMIT 1 |
135
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/includes/functions.class.php:869<br>/modules/revsliderprestashop/public/revslider-front.class.php:85<br>/modules/revsliderprestashop/rev-loader.php:735<br>/modules/revsliderprestashop/revsliderprestashop.php:604<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitcontactpage" LIMIT 1 |
135
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:98<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/51/ae/ed/51aeedfe3637951dccce740e67d838b843b9d10c_2.file.footer.tpl.php:32<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:517<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 1569 LIMIT 1 |
134
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 457) AND (id_product_attribute = 9552) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
133
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SHOW INDEX FROM ps_correos_oficial_saved_orders WHERE Key_name = 'idx_correos_oficial_saved_orders_exp_number' |
133
ms
|
1 |
|
|
/modules/correosoficialtools/correosoficialtools.php:604
/modules/correosoficialtools/correosoficialtools.php:59<br>:undefined<br>/src/Core/Foundation/IoC/Container.php:123<br>/src/Core/Foundation/IoC/Container.php:153<br>/src/Core/Foundation/IoC/Container.php:166<br>/src/Adapter/ServiceLocator.php:65<br>/classes/module/Module.php:1191<br>/tools/profiling/Module.php:35<br>/classes/module/Module.php:1170<br>/classes/Hook.php:921<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 221 |
133
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `name`
FROM `ps_hook`
WHERE `id_hook` = 10 LIMIT 1 |
132
ms
|
1 |
|
|
/classes/Hook.php:239
/classes/Hook.php:884<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 85 LIMIT 1 |
131
ms
|
0 |
|
|
/classes/Category.php:1371
/classes/Product.php:751<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 9556 LIMIT 1 |
131
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1624 LIMIT 1 |
131
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 4
AND cl.id_shop = 1
AND cl.`id_category` = 2 LIMIT 1 |
130
ms
|
1 |
|
|
/classes/Category.php:1371
/classes/Product.php:5621<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 179) AND (id_product_attribute = 302) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
130
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 252 LIMIT 1 |
129
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-bubblemorph-addon' LIMIT 1 |
129
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
129
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Adapter/Presenter/Cart/CartPresenter.php:374<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
128
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-filmstrip-addon' LIMIT 1 |
128
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_trustedshops_channel
FROM `ps_trustedshops_channel`
WHERE (id_client = '9cc15b06d386__PrestaShop') AND (id_lang = 4) AND (id_shop = 1) LIMIT 1 |
128
ms
|
1 |
|
|
/modules/trustedshopseasyintegration/src/Repository/ChannelRepository.php:99
/modules/trustedshopseasyintegration/src/Service/ChannelService.php:708<br>/modules/trustedshopseasyintegration/src/Service/HookService.php:100<br>/modules/trustedshopseasyintegration/src/Hook/HookLayout.php:280<br>:undefined<br>/modules/trustedshopseasyintegration/vendor/totpsclasslib/src/Hook/AbstractHookDispatcher.php:108<br>/modules/trustedshopseasyintegration/src/Utils/ModuleTrait.php:183<br>/modules/trustedshopseasyintegration/trustedshopseasyintegration.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:187<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 456) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
128
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
128
ms
|
4 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
127
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 221) AND (id_product_attribute = 248) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
127
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE ctg.`id_group`
FROM ps_category_group ctg
WHERE ctg.`id_category` = 2 AND ctg.`id_group` = 1 LIMIT 1 |
127
ms
|
1 |
|
|
/classes/Category.php:1730
/classes/Category.php:968<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
126
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 9552 LIMIT 1 |
125
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-revealer-addon' LIMIT 1 |
125
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
125
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 457) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
125
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-refresh-addon' LIMIT 1 |
125
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
125
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 391 |
125
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 456) AND (id_product_attribute = 9556) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
125
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_tax` a
WHERE (a.`id_tax` = 11) LIMIT 1 |
124
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/tax/TaxRulesTaxManager.php:116<br>/classes/Product.php:3895<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
124
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 9552 LIMIT 1 |
123
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-beforeafter-addon' LIMIT 1 |
123
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 467 LIMIT 1 |
123
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 391) AND (id_product_attribute = 1569) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
123
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_state` a
WHERE (a.`id_state` = 322) LIMIT 1 |
121
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:76
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/controller/FrontController.php:1676<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-snow-addon' LIMIT 1 |
121
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
120
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 467) AND (id_product_attribute = 1624) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
120
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 221 LIMIT 1 |
120
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_country_lang`
WHERE `id_country` = 6 |
120
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/AddressFormat.php:404<br>/classes/AddressFormat.php:439<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 248 LIMIT 1 |
120
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value FROM `ps_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
119
ms
|
1 |
|
|
/classes/shop/Shop.php:1171
/classes/Currency.php:968<br>/classes/Currency.php:890<br>/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 456 AND `id_shop` = 1 |
119
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Product.php:713<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 391 AND id_shop=1 LIMIT 1 |
119
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
119
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
119
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
119
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 391) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
118
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_emailsubscription" LIMIT 1 |
118
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/modules/ftm_recaptchav3/ftm_recaptchav3.php:83<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 467 LIMIT 1 |
117
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-static-css' LIMIT 1 |
117
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/includes/functions.class.php:862<br>/modules/revsliderprestashop/public/revslider-front.class.php:85<br>/modules/revsliderprestashop/rev-loader.php:735<br>/modules/revsliderprestashop/revsliderprestashop.php:604<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 226 AND `id_shop` = 1 LIMIT 1 |
117
ms
|
1 |
|
|
/classes/module/Module.php:2328
/modules/ftm_recaptchav3/ftm_recaptchav3.php:83<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitelementor" LIMIT 1 |
117
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
117
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 86 LIMIT 1 |
116
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 220 LIMIT 1 |
116
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 9552 LIMIT 1 |
116
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_group`
WHERE `id_group` = 1 LIMIT 1 |
115
ms
|
1 |
|
|
/classes/Group.php:154
/classes/Product.php:3963<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 9556 LIMIT 1 |
115
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-paintbrush-addon' LIMIT 1 |
115
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1569 LIMIT 1 |
114
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 149 AND `id_shop` = 1 LIMIT 1 |
114
ms
|
1 |
|
|
/classes/module/Module.php:2328
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:48<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 302 LIMIT 1 |
113
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1636 LIMIT 1 |
113
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-particles-addon' LIMIT 1 |
113
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
112
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 86 LIMIT 1 |
112
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 221) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
111
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 157 AND `id_shop` = 1 LIMIT 1 |
111
ms
|
1 |
|
|
/classes/module/Module.php:2328
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:44<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
110
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_lang_shop`
WHERE `id_lang` = 4
AND id_shop = 1 LIMIT 1 |
110
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/config/config.inc.php:227<br>/index.php:27
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 179) AND (id_product_attribute = 302) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
110
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
110
ms
|
4 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:112<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE * FROM `ps_hook_module_exceptions`
WHERE `id_shop` IN (1) |
109
ms
|
1 |
|
|
/classes/module/Module.php:2237
/classes/Hook.php:889<br>/classes/Dispatcher.php:364<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 391 LIMIT 1 |
109
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1636 LIMIT 1 |
109
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 457 LIMIT 1 |
108
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_legalcompliance" LIMIT 1 |
108
ms
|
0 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/controller/FrontController.php:1573<br>/classes/controller/FrontController.php:1710<br>/classes/controller/FrontController.php:528<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `name`
FROM `ps_hook`
WHERE `id_hook` = 962 LIMIT 1 |
108
ms
|
1 |
|
|
/classes/Hook.php:239
/classes/Hook.php:884<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:98<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/51/ae/ed/51aeedfe3637951dccce740e67d838b843b9d10c_2.file.footer.tpl.php:32<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:517<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 179) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
108
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
107
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-slicey-addon' LIMIT 1 |
107
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 469 |
107
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitwishlist" LIMIT 1 |
107
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:44<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE product_attribute_shop.`price`
FROM `ps_product_attribute` pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product_attribute` = 1636 LIMIT 1 |
107
ms
|
1 |
|
|
/classes/Combination.php:543
/classes/Product.php:5627<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 457) AND (id_product_attribute = 9552) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
106
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 302 LIMIT 1 |
106
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 220 AND `id_group` = 1 LIMIT 1 |
106
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-panorama-addon' LIMIT 1 |
106
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 9556 LIMIT 1 |
106
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 469) AND (id_product_attribute = 1636) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
105
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 221 LIMIT 1 |
105
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 457 |
105
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 302 LIMIT 1 |
105
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5710<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_order`
FROM `ps_orders`
WHERE `id_cart` = 0 AND id_shop IN (1) LIMIT 1 |
105
ms
|
1 |
|
|
/classes/order/Order.php:1203
/classes/order/Order.php:1184<br>/classes/Product.php:4284<br>/classes/Product.php:5757<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 179 |
104
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 467 AND id_shop=1 LIMIT 1 |
104
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 391 AND `id_group` = 1 LIMIT 1 |
104
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 43 LIMIT 1 |
104
ms
|
0 |
|
|
/classes/Category.php:1371
/classes/Product.php:751<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 391) AND (id_product_attribute = 1569) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
104
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-liquideffect-addon' LIMIT 1 |
104
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 456 LIMIT 1 |
103
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 2 LIMIT 1 |
103
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 3 |
103
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Currency.php:246<br>/classes/Currency.php:1079<br>/classes/Tools.php:704<br>/classes/controller/FrontController.php:384<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 4
AND cl.id_shop = 1
AND cl.`id_category` = 86 LIMIT 1 |
103
ms
|
1 |
|
|
/classes/Category.php:1371
/classes/Product.php:5621<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-weather-addon' LIMIT 1 |
103
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-explodinglayers-addon' LIMIT 1 |
103
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 221) AND (id_product_attribute = 248) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
102
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 142 AND `id_shop` = 1 LIMIT 1 |
102
ms
|
1 |
|
|
/classes/module/Module.php:2328
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:98<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/51/ae/ed/51aeedfe3637951dccce740e67d838b843b9d10c_2.file.footer.tpl.php:32<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:517<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 302 LIMIT 1 |
102
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/modules/hidecombinations/hidecombinations.php:207<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/Product.php:5572<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 9556 LIMIT 1 |
102
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
102
ms
|
4 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:112<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 469) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
102
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:453
/classes/Product.php:4279<br>/classes/Product.php:5747<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_group_lang`
WHERE `id_group` = 1 |
101
ms
|
4 |
|
|
/src/Adapter/EntityMapper.php:84
/classes/ObjectModel.php:265<br>/tools/profiling/ObjectModel.php:32<br>/classes/Group.php:81<br>/classes/Group.php:397<br>/classes/Cart.php:248<br>/classes/Cart.php:221<br>/classes/controller/FrontController.php:443<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 248 LIMIT 1 |
101
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 456 LIMIT 1 |
101
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-domain-switch-addon' LIMIT 1 |
101
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
100
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 220 |
100
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE option_value FROM `ps_revslider_options` WHERE `option_name`='revslider-duotonefilters-addon' LIMIT 1 |
99
ms
|
17 |
|
|
/modules/revsliderprestashop/includes/revslider_db.class.php:192
/modules/revsliderprestashop/rev-loader.php:1019<br>/modules/revsliderprestashop/rev-loader.php:1826<br>/modules/revsliderprestashop/revsliderprestashop.php:599<br>/modules/revsliderprestashop/revsliderprestashop.php:665<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 1636 LIMIT 1 |
99
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE sa.`quantity`
FROM `ps_stock_available` sa
WHERE sa.`id_product_attribute` = 9552 LIMIT 1 |
99
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:640
/override/classes/Product.php:52<br>/classes/Product.php:3684<br>/classes/Product.php:5726<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
98
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 221 AND id_shop=1 LIMIT 1 |
98
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'GBP') LIMIT 1 |
98
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
98
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 179 AND id_shop=1 LIMIT 1 |
97
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 4
AND cl.id_shop = 1
AND cl.`id_category` = 85 LIMIT 1 |
97
ms
|
1 |
|
|
/classes/Category.php:1371
/classes/Product.php:5621<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
96
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 469) AND (id_product_attribute = 1636) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
96
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 467) AND (id_product_attribute = 1624) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
96
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:797
/classes/Combination.php:153<br>/classes/Combination.php:140<br>/classes/Product.php:5810<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_currency_shop`
WHERE `id_currency` = 3
AND id_shop = 1 LIMIT 1 |
96
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/classes/Tools.php:708<br>/classes/controller/FrontController.php:384<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitlinksmanager" LIMIT 1 |
95
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:98<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/51/ae/ed/51aeedfe3637951dccce740e67d838b843b9d10c_2.file.footer.tpl.php:32<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:517<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 220 LIMIT 1 |
94
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 456 |
94
ms
|
3 |
|
|
/classes/Product.php:3395
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:212<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
93
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 86 LIMIT 1 |
93
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "iqitcompare" LIMIT 1 |
93
ms
|
1 |
|
|
/classes/module/Module.php:2840
/classes/module/Module.php:2327<br>/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:44<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 143 AND `id_shop` = 1 LIMIT 1 |
93
ms
|
1 |
|
|
/classes/module/Module.php:2328
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:551<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:156<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 4
AND cl.id_shop = 1
AND cl.`id_category` = 43 LIMIT 1 |
92
ms
|
1 |
|
|
/classes/Category.php:1371
/classes/Product.php:5621<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
92
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 457 AND id_shop=1 LIMIT 1 |
92
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 141 AND `id_shop` = 1 LIMIT 1 |
92
ms
|
1 |
|
|
/classes/module/Module.php:2328
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:44<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 |
92
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 220 AND `id_shop` = 1 LIMIT 1 |
92
ms
|
1 |
|
|
/classes/module/Module.php:2328
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/config/smarty.config.inc.php:167<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:98<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/8c/1e/92/8c1e9271131df7e7f93c24c9c10474ba9bfdda8d_2.file.footer-1.tpl.php:39<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/51/ae/ed/51aeedfe3637951dccce740e67d838b843b9d10c_2.file.footer.tpl.php:32<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:517<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:143<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 469 LIMIT 1 |
91
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
91
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 85 LIMIT 1 |
91
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 467 AND `id_group` = 1 LIMIT 1 |
90
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 457 LIMIT 1 |
90
ms
|
1 |
|
|
/classes/SpecificPrice.php:420
/classes/SpecificPrice.php:508<br>/classes/Product.php:3796<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
90
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
89
ms
|
4 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:115<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 190 AND `id_shop` = 1 LIMIT 1 |
88
ms
|
1 |
|
|
/classes/module/Module.php:2328
/classes/Hook.php:1013<br>/tools/profiling/Hook.php:64<br>/classes/Hook.php:964<br>/controllers/front/IndexController.php:39<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 85 LIMIT 1 |
87
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 221 AND `id_group` = 1 LIMIT 1 |
86
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'USD') LIMIT 1 |
86
ms
|
1 |
|
|
/classes/Currency.php:893
/src/Adapter/Currency/CurrencyDataProvider.php:92<br>/src/Adapter/Currency/CurrencyDataProvider.php:114<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM ps_required_field |
86
ms
|
1 |
|
|
/classes/ObjectModel.php:1510
/classes/ObjectModel.php:1542<br>/classes/ObjectModel.php:1473<br>/classes/controller/FrontController.php:532<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps_country`
WHERE `id_country` = 6 LIMIT 1 |
86
ms
|
1 |
|
|
/classes/Country.php:401
/classes/AddressFormat.php:638<br>/classes/AddressFormat.php:619<br>/classes/AddressFormat.php:563<br>/classes/AddressFormat.php:438<br>/classes/controller/FrontController.php:1671<br>/classes/controller/FrontController.php:529<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
85
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
84
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Adapter/Presenter/Cart/CartPresenter.php:374<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE *
FROM `ps_shop_url` a0 |
83
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:381
/classes/PrestaShopCollection.php:438<br>/classes/Tools.php:2494<br>/modules/sendinblue/services/ConfigService.php:324<br>/modules/sendinblue/services/ConfigService.php:122<br>/modules/sendinblue/services/ConfigService.php:138<br>/modules/sendinblue/sendinblue.php:208<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:438<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_shop
FROM `ps_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
83
ms
|
1 |
|
|
/classes/ObjectModel.php:1647
/classes/Group.php:400<br>/classes/Cart.php:248<br>/classes/Cart.php:221<br>/classes/controller/FrontController.php:443<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
83
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/src/Adapter/Presenter/Cart/CartPresenter.php:528<br>/src/Adapter/Presenter/Cart/CartPresenter.php:382<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 456 AND id_shop=1 LIMIT 1 |
82
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
81
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:335<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
81
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Adapter/Presenter/Cart/CartPresenter.php:374<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 86 LIMIT 1 |
81
ms
|
0 |
|
|
/classes/Category.php:1371
/classes/Product.php:751<br>/modules/hidecombinations/classes/HidecombinationsConfiguration.php:213<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
81
ms
|
4 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:112<br>/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:102<br>/src/Core/Data/Layer/AbstractDataLayer.php:91<br>/src/Core/Data/Layer/AbstractDataLayer.php:150<br>/src/Core/Data/Layer/AbstractDataLayer.php:95<br>/src/Core/Localization/Currency/CurrencyDataSource.php:67<br>/src/Core/Localization/Currency/CurrencyDataSource.php:109<br>/src/Core/Localization/Currency/CurrencyDataSource.php:96<br>/src/Core/Localization/Currency/Repository.php:87<br>/src/Core/Localization/Locale/Repository.php:207<br>/src/Core/Localization/Locale/Repository.php:150<br>/classes/controller/Controller.php:196<br>/classes/controller/FrontController.php:303<br>/tools/profiling/Controller.php:41<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 469 AND id_shop=1 LIMIT 1 |
80
ms
|
1 |
|
|
/classes/Product.php:6759
/classes/Product.php:3894<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
80
ms
|
0 |
|
|
/classes/module/Module.php:2328
/classes/controller/FrontController.php:1573<br>/classes/controller/FrontController.php:1710<br>/classes/controller/FrontController.php:528<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
80
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE name FROM ps_category_lang WHERE id_shop = 1 AND id_lang = 4 AND id_category = 43 LIMIT 1 |
79
ms
|
1 |
|
|
/classes/Product.php:5622
/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
79
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
79
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
78
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Adapter/Presenter/Cart/CartPresenter.php:374<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 469 LIMIT 1 |
78
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE id_manufacturer FROM `ps_product` WHERE id_product = 179 LIMIT 1 |
77
ms
|
1 |
|
|
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:1109
/modules/hidecombinations/classes/HidecombinationsConfiguration.php:214<br>/override/classes/Product.php:47<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
76
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
76
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
75
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/src/Adapter/Presenter/Cart/CartPresenter.php:528<br>/src/Adapter/Presenter/Cart/CartPresenter.php:382<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
74
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 179 AND `id_group` = 1 LIMIT 1 |
74
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
73
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
73
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
72
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
71
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
71
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 456 AND `id_group` = 1 LIMIT 1 |
70
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
69
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
69
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Adapter/Presenter/Cart/CartPresenter.php:374<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
69
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/95/6e/51/956e5149c243c9c661e1ad0fd91cefd9a3735825_2.file.header-4.tpl.php:125<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:155<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
68
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/classes/controller/FrontController.php:524<br>/classes/controller/FrontController.php:590<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 457 AND `id_group` = 1 LIMIT 1 |
68
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 469 AND `id_group` = 1 LIMIT 1 |
65
ms
|
0 |
|
|
/classes/GroupReduction.php:156
/classes/Product.php:3959<br>/override/classes/Product.php:48<br>/classes/Product.php:3684<br>/classes/Product.php:5640<br>/classes/Product.php:5874<br>/classes/Category.php:1069<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:123<br>/modules/ps_googleanalytics/classes/Hook/HookDisplayHeader.php:104<br>/modules/ps_googleanalytics/ps_googleanalytics.php:94<br>/classes/Hook.php:1007<br>/tools/profiling/Hook.php:35<br>/classes/Hook.php:431<br>/classes/Hook.php:944<br>/classes/controller/FrontController.php:598<br>/controllers/front/IndexController.php:37<br>/tools/profiling/Controller.php:60<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
65
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/src/Adapter/Presenter/Cart/CartPresenter.php:528<br>/src/Adapter/Presenter/Cart/CartPresenter.php:382<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
63
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:95<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
63
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2206<br>/classes/Cart.php:2292<br>/src/Adapter/Presenter/Cart/CartPresenter.php:337<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
62
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3475<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|
SELECT SQL_NO_CACHE value
FROM `ps_correos_oficial_configuration`
WHERE (name = "ActivateDimensionsByDefault") AND (id_shop = 1) LIMIT 1 |
62
ms
|
1 |
|
|
/modules/correosoficial/models/CorreosOficialConfig.php:70
/modules/correosoficial/classes/CorreosOficialCheckout.php:79<br>/override/classes/Cart.php:13<br>/classes/Cart.php:3395<br>/classes/Cart.php:3468<br>/src/Core/Cart/Fees.php:96<br>/src/Core/Cart/Calculator.php:354<br>/src/Core/Cart/Calculator.php:155<br>/classes/Cart.php:2190<br>/src/Adapter/Presenter/Cart/CartPresenter.php:336<br>/modules/ps_shoppingcart/ps_shoppingcart.php:96<br>/config/smartyfront.config.inc.php:133<br>/config/smartyfront.config.inc.php:78<br>/config/smartyfront.config.inc.php:142<br>/classes/Smarty/SmartyLazyRegister.php:83<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/7d/53/c3/7d53c3d2a77f06c2a68abcfd8737267a160d4168_2.file.mobile-header-3.tpl.php:116<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:196<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/f3/1a/2b/f31a2b7e51953b0fa656216aefba0dc9e5eaf5e6_2.file.header.tpl.php:55<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:281<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/ce/d3/9f/ced39f43941a8a06ac07fc057d1730d0465612e6_2.file.layout-both-columns.tpl.php:76<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/4c/90/50/4c9050d0a4dd344bdd23595d5cc27e796cd8666b_2.file.layout-full-width.tpl.php:50<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/bc/c1/3a/bcc13abfbb45471767c447466db561c31e696fa1_2.file.page.tpl.php:33<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:385<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116<br>/var/cache/prod/smarty/compile/warehouselayouts_layout_full_width_tpl/5d/29/23/5d2923a1f6a9456ea45a1617f1f83c1b69ed6e99_2.file.index.tpl.php:36<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123<br>/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:216<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:232<br>/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116<br>/classes/controller/FrontController.php:727<br>/classes/controller/FrontController.php:709<br>/tools/profiling/Controller.php:106<br>/tools/profiling/Controller.php:83<br>/classes/Dispatcher.php:525<br>/index.php:28
|