Cadeaux : Explorer la sélection. Livraison offerte & retours prolongés jusqu'au 11/01.
414 produits

Filtres

Couleur

Taille

Trier par

Changer de pays / langue

Vous explorez actuellement la boutique en ligne FURSAC France en Français. Pour changer de pays de livraison ou de langue, faites votre choix dans la liste ci-dessous.

There are no log entries.
Time Query
0.31ms
SELECT * FROM `webstores` ORDER BY `position` ASC
0.32ms
SELECT * FROM `countries` WHERE `countries`.`id` IN ('15', '5', '16', '40')
0.26ms
SELECT * FROM `languages` WHERE `languages`.`id` IN ('1', '2')
0.45ms
SELECT `countries`.*, `country_webstore`.`id` AS `pivot_id`, `country_webstore`.`webstore_id` AS `pivot_webstore_id`, `country_webstore`.`country_id` AS `pivot_country_id` FROM `countries` INNER JOIN `country_webstore` ON `countries`.`id` = `country_webstore`.`country_id` WHERE `country_webstore`.`webstore_id` IN ('1', '2', '3', '4', '5')
0.35ms
SELECT `languages`.*, `language_webstore`.`id` AS `pivot_id`, `language_webstore`.`webstore_id` AS `pivot_webstore_id`, `language_webstore`.`language_id` AS `pivot_language_id` FROM `languages` INNER JOIN `language_webstore` ON `languages`.`id` = `language_webstore`.`language_id` WHERE `language_webstore`.`webstore_id` IN ('1', '2', '3', '4', '5')
0.22ms
SELECT * FROM `languages`
0.34ms
SELECT * FROM `editorial_articles` WHERE `id` = '125' LIMIT 1
0.28ms
SELECT * FROM `editorial_articles` WHERE `id` = '126' LIMIT 1
0.26ms
SELECT * FROM `editorial_articles` WHERE `id` = '127' LIMIT 1
0.60ms
SELECT * FROM `config`
0.32ms
SELECT * FROM `meta_categories` WHERE `slug` = 'pull-laine-homme' LIMIT 1
0.36ms
SELECT `colors`.*, `color_meta_category`.`id` AS `pivot_id`, `color_meta_category`.`category_id` AS `pivot_category_id`, `color_meta_category`.`color_id` AS `pivot_color_id` FROM `colors` INNER JOIN `color_meta_category` ON `colors`.`id` = `color_meta_category`.`color_id` WHERE `color_meta_category`.`category_id` = '67'
0.27ms
SELECT `seo_types`.*, `meta_category_seo_type`.`id` AS `pivot_id`, `meta_category_seo_type`.`category_id` AS `pivot_category_id`, `meta_category_seo_type`.`seo_id` AS `pivot_seo_id` FROM `seo_types` INNER JOIN `meta_category_seo_type` ON `seo_types`.`id` = `meta_category_seo_type`.`seo_id` WHERE `meta_category_seo_type`.`category_id` = '67'
0.23ms
SELECT `styles`.*, `meta_category_style`.`id` AS `pivot_id`, `meta_category_style`.`category_id` AS `pivot_category_id`, `meta_category_style`.`style_id` AS `pivot_style_id` FROM `styles` INNER JOIN `meta_category_style` ON `styles`.`id` = `meta_category_style`.`style_id` WHERE `meta_category_style`.`category_id` = '67'
0.23ms
SELECT `tags`.*, `meta_category_tag`.`id` AS `pivot_id`, `meta_category_tag`.`category_id` AS `pivot_category_id`, `meta_category_tag`.`tag_id` AS `pivot_tag_id` FROM `tags` INNER JOIN `meta_category_tag` ON `tags`.`id` = `meta_category_tag`.`tag_id` WHERE `meta_category_tag`.`category_id` = '67'
91.11ms
SELECT COUNT(*)AS nb FROM (SELECT `products`.`id` FROM `products` INNER JOIN `products_details` ON `products_details`.`product_id` = `products`.`id` AND `products_details`.`webstore_id` = 1 LEFT JOIN (SELECT variant, GROUP_CONCAT(DISTINCT hexcode) AS variants
                                 FROM products p
                                 JOIN products_details pd
                                 ON pd.product_id = p.id AND pd.webstore_id = 1
                                 JOIN (
                                 SELECT product_id, MIN(id) AS first
                                 FROM color_product
                                 GROUP BY product_id
                                 ) AS cp1 ON cp1.product_id = p.id
                                 JOIN color_product cp2 ON cp2.id = cp1.first
                                 join colors c ON c.id = cp2.color_id
                                 WHERE pd.is_enabled = 1
                                 AND pd.price > 0
                                 GROUP BY variant) AS pv ON `pv`.`variant` = `products`.`variant` WHERE `products_details`.`is_enabled` = '1' AND `products_details`.`price` > '0' GROUP BY `products`.`id` ORDER BY RAND(29) ASC) q
6.30ms
SELECT `colors`.* FROM `colors` INNER JOIN `color_product` ON `color_product`.`color_id` = `colors`.`id` INNER JOIN `products` ON `products`.`id` = `color_product`.`product_id` INNER JOIN `products_details` ON `products_details`.`product_id` = `products`.`id` AND `products_details`.`webstore_id` = 1 AND `products_details`.`is_enabled` = 1 AND `products_details`.`price` > 0 GROUP BY `colors`.`id` ORDER BY `colors`.`position` ASC
24.75ms
SELECT `sizes`.*, GROUP_CONCAT(DISTINCT sizes.id) AS sizes_ids FROM `sizes` INNER JOIN `articles` ON `articles`.`size_id` = `sizes`.`id` INNER JOIN `articles_details` ON `articles_details`.`article_id` = `articles`.`id` AND `articles_details`.`webstore_id` = 1 AND `articles_details`.`is_enabled` = 1 INNER JOIN `products` ON `products`.`id` = `articles`.`product_id` INNER JOIN `products_details` ON `products_details`.`product_id` = `products`.`id` AND `products_details`.`webstore_id` = 1 AND `products_details`.`is_enabled` = 1 AND `products_details`.`price` > 0 LEFT JOIN `products_items` ON `products_items`.`item_id` = `products`.`id` AND `products_items`.`pos` = 1 LEFT JOIN `products` AS `p2` ON `p2`.`id` = `products_items`.`parent_id` WHERE `sizes`.`name` <> 'TU' GROUP BY `sizes`.`name` ORDER BY `sizes`.`position` ASC
97.60ms
SELECT SQL_CALC_FOUND_ROWS `products`.*, `variants` FROM `products` INNER JOIN `products_details` ON `products_details`.`product_id` = `products`.`id` AND `products_details`.`webstore_id` = 1 LEFT JOIN (SELECT variant, GROUP_CONCAT(DISTINCT hexcode) AS variants
                                 FROM products p
                                 JOIN products_details pd
                                 ON pd.product_id = p.id AND pd.webstore_id = 1
                                 JOIN (
                                 SELECT product_id, MIN(id) AS first
                                 FROM color_product
                                 GROUP BY product_id
                                 ) AS cp1 ON cp1.product_id = p.id
                                 JOIN color_product cp2 ON cp2.id = cp1.first
                                 join colors c ON c.id = cp2.color_id
                                 WHERE pd.is_enabled = 1
                                 AND pd.price > 0
                                 GROUP BY variant) AS pv ON `pv`.`variant` = `products`.`variant` WHERE `products_details`.`is_enabled` = '1' AND `products_details`.`price` > '0' GROUP BY `products`.`id` ORDER BY RAND(29) ASC LIMIT 32 OFFSET 64
0.16ms
SELECT FOUND_ROWS()
0.99ms
SELECT * FROM `products_details` WHERE `product_id` IN ('5504', '5875', '5466', '5732', '5233', '5660', '4669', '5755', '3354', '5869', '5810', '5806', '5535', '4538', '5674', '5708', '5590', '5380', '5832', '5231', '5297', '3874', '5234', '5771', '5852', '5740', '3728', '5093', '5797', '5185', '5429', '5536') ORDER BY `webstore_id` ASC
1.23ms
SELECT * FROM `products_pictures` WHERE `product_id` IN ('5504', '5875', '5466', '5732', '5233', '5660', '4669', '5755', '3354', '5869', '5810', '5806', '5535', '4538', '5674', '5708', '5590', '5380', '5832', '5231', '5297', '3874', '5234', '5771', '5852', '5740', '3728', '5093', '5797', '5185', '5429', '5536') ORDER BY `position` ASC
0.38ms
SELECT * FROM `products_types` WHERE `products_types`.`id` IN ('9', '8', '7', '15', '5', '6', '14', '4', '3', '1', '12') ORDER BY `singular` ASC
0.50ms
SELECT `seo_types`.* FROM `seo_types` INNER JOIN `product_type_seo` ON `product_type_seo`.`seo_id` = `seo_types`.`id` WHERE `seo_types`.`id` IN ('38', '9', '21', '29', '20', '18', '7', '4', '36', '23', '22', '61', '44', '25', '28', '8', '39', '19', '12', '30') ORDER BY `singular` ASC
0.58ms
SELECT `styles`.* FROM `styles` INNER JOIN `product_type_style` ON `product_type_style`.`style_id` = `styles`.`id` WHERE `styles`.`id` IN ('73', '50', '5', '25', '26', '39', '33', '67', '32', '42', '31', '45', '38', '28', '34', '68', '44', '18', '15', '51', '40', '64') ORDER BY ISNULL(pos) ASC, `pos` ASC
0.93ms
SELECT `tags`.*, `product_tag`.`id` AS `pivot_id`, `product_tag`.`product_id` AS `pivot_product_id`, `product_tag`.`tag_id` AS `pivot_tag_id` FROM `tags` INNER JOIN `product_tag` ON `tags`.`id` = `product_tag`.`tag_id` WHERE `product_tag`.`product_id` IN ('5504', '5875', '5466', '5732', '5233', '5660', '4669', '5755', '3354', '5869', '5810', '5806', '5535', '4538', '5674', '5708', '5590', '5380', '5832', '5231', '5297', '3874', '5234', '5771', '5852', '5740', '3728', '5093', '5797', '5185', '5429', '5536') ORDER BY `name` ASC
0.77ms
SELECT `colors`.*, `color_product`.`id` AS `pivot_id`, `color_product`.`product_id` AS `pivot_product_id`, `color_product`.`color_id` AS `pivot_color_id` FROM `colors` INNER JOIN `color_product` ON `colors`.`id` = `color_product`.`color_id` WHERE `color_product`.`product_id` IN ('5504', '5875', '5466', '5732', '5233', '5660', '4669', '5755', '3354', '5869', '5810', '5806', '5535', '4538', '5674', '5708', '5590', '5380', '5832', '5231', '5297', '3874', '5234', '5771', '5852', '5740', '3728', '5093', '5797', '5185', '5429', '5536') ORDER BY `name` ASC
1.53ms
SELECT `articles`.*, sizes.name as size_name FROM `articles` INNER JOIN `sizes` ON `sizes`.`id` = `articles`.`size_id` WHERE `product_id` IN ('5504', '5875', '5466', '5732', '5233', '5660', '4669', '5755', '3354', '5869', '5810', '5806', '5535', '4538', '5674', '5708', '5590', '5380', '5832', '5231', '5297', '3874', '5234', '5771', '5852', '5740', '3728', '5093', '5797', '5185', '5429', '5536') ORDER BY `position` ASC
3.18ms
SELECT * FROM `articles_details` WHERE `article_id` IN ('28839', '27050', '25478', '28528', '22772', '27431', '26782', '29090', '17238', '28870', '19075', '29016', '27549', '28520', '17237', '28871', '29017', '27550', '28131', '27554', '28840', '27051', '26038', '28560', '22773', '26783', '27052', '26036', '28561', '22774', '29068', '26784', '26046', '26051', '17236', '28872', '27270', '29018', '27551', '28384', '28129', '27555', '28189', '28841', '27552', '28383', '28128', '27556', '28188', '28842', '27053', '26035', '22775', '29067', '26785', '26045', '28562', '26050', '17235', '28873', '27269', '29019', '22776', '29066', '26786', '26044', '28563', '26049', '17234', '28874', '27268', '29020', '27547', '28382', '28127', '27553', '28187', '28843', '27054', '26034', '28130', '28190', '26037', '29069', '26787', '26047', '28564', '26052', '17233', '27271', '27548', '28385', '25062', '28565', '17232', '28844', '27055', '28386', '22777', '28132', '28875', '26039', '29021', '29070', '26788', '26048', '28876', '29022', '26789', '28566', '19594', '28845', '27056', '22778', '28780', '28846', '27057', '23357', '22779', '29023', '26790', '28567', '19595', '26791', '28568', '25063', '27058', '22780', '27059', '27800', '28781', '23358', '28646', '25064', '28645', '27799', '23359', '28644', '28782', '27798', '28647', '26270', '27801', '28783', '23360', '26269', '28648', '27802', '26268', '26271', '28784', '23361', '26272', '28785', '23362', '28786', '23363', '23364', '23365', '26781')
0.63ms
SELECT * FROM `sizes` WHERE `sizes`.`id` IN ('44', '121', '140', '122', '54', '103', '142', '104', '45', '94', '80', '55', '46', '95', '81', '56', '105', '106', '96', '47', '57', '82', '48', '97', '58', '83', '107', '98', '59', '84', '108', '143', '85', '109', '49', '124', '60', '50', '61', '86', '144', '62', '51', '87', '145', '63', '88', '146', '52', '53', '40', '64', '192', '41', '66', '42', '43', '90', '68', '91', '132', '92', '93', '70', '123', '72', '74', '76', '130', '225') ORDER BY `position` ASC
0.61ms
SELECT `products`.*, `products_items`.`id` AS `pivot_id`, `products_items`.`parent_id` AS `pivot_parent_id`, `products_items`.`item_id` AS `pivot_item_id`, `products_items`.`pos` AS `pivot_pos` FROM `products` INNER JOIN `products_items` ON `products`.`id` = `products_items`.`item_id` WHERE `products_items`.`parent_id` IN ('5504', '5875', '5466', '5732', '5233', '5660', '4669', '5755', '3354', '5869', '5810', '5806', '5535', '4538', '5674', '5708', '5590', '5380', '5832', '5231', '5297', '3874', '5234', '5771', '5852', '5740', '3728', '5093', '5797', '5185', '5429', '5536') ORDER BY ISNULL(pos) ASC, `pos` ASC
0.42ms
SELECT * FROM `products_details` WHERE `product_id` IN ('5184', '5814', '4853', '5794') ORDER BY `webstore_id` ASC
0.60ms
SELECT `articles`.*, sizes.name as size_name FROM `articles` INNER JOIN `sizes` ON `sizes`.`id` = `articles`.`size_id` WHERE `product_id` IN ('5184', '5814', '4853', '5794') ORDER BY `position` ASC
0.87ms
SELECT * FROM `articles_details` WHERE `article_id` IN ('25857', '28900', '25858', '28901', '25859', '28902', '25860', '28903', '25861', '28904', '25862', '28905', '25863', '28906', '28755', '28907', '24205', '28756', '24206', '28757', '24207', '28758', '24208', '28759', '24209', '28760', '24210', '28761', '24211', '28762', '28763')
0.44ms
SELECT * FROM `sizes` WHERE `sizes`.`id` IN ('44', '45', '46', '47', '48', '49', '50', '62', '51', '63', '64', '65', '66', '67', '68', '69', '70', '71', '72', '73', '74', '75', '76', '130') ORDER BY `position` ASC
1.73ms
SELECT `articles`.`id`, (articles.qty + articles_details.qty) AS qty FROM `articles` INNER JOIN `articles_details` ON `articles_details`.`article_id` = `articles`.`id` AND `articles_details`.`webstore_id` = 1 WHERE `product_id` IN ('5504', '5875', '5466', '5732', '5233', '5660', '4669', '5755', '3354', '5869', '5810', '5806', '5535', '4538', '5674', '5708', '5590', '5380', '5832', '5231', '5297', '3874', '5234', '5771', '5852', '5740', '3728', '5093', '5797', '5185', '5429', '5536') GROUP BY `articles`.`id`
1.16ms
SELECT `meta_categories`.*, `meta_categories_xlinking`.`id` AS `pivot_id`, `meta_categories_xlinking`.`parent_id` AS `pivot_parent_id`, `meta_categories_xlinking`.`child_id` AS `pivot_child_id` FROM `meta_categories` INNER JOIN `meta_categories_xlinking` ON `meta_categories`.`id` = `meta_categories_xlinking`.`child_id` WHERE `meta_categories_xlinking`.`parent_id` = '67' AND `is_enabled` = '1' ORDER BY RAND(29167) ASC
0.24ms
SELECT `code`, `taxes` FROM `countries`
0.36ms
SELECT * FROM `seo_types`
0.30ms
SELECT * FROM `styles`
0.77ms
SELECT * FROM `discounts` WHERE (`webstore_id` = '1' OR `webstore_id` IS NULL) AND `range` = '1' AND `is_enabled` = '1'
2.38ms
SELECT `discount_id`, `product_id` FROM `discount_product` WHERE `discount_id` IN ('356', '411', '415', '416', '531', '532', '728', '731', '740', '1138', '1292')
0.26ms
SELECT * FROM `customers` WHERE `customers`.`id` = '' LIMIT 1
0.31ms
SELECT * FROM `categories` WHERE `id` = '1' LIMIT 1
114.84ms
SELECT `categories`.*, `categories_details`.`is_enabled`, COUNT(products.id) AS nb_products FROM `categories` INNER JOIN `categories_details` ON `categories_details`.`category_id` = `categories`.`id` AND `categories_details`.`webstore_id` = 1 LEFT JOIN `category_product` ON `category_product`.`category_id` = `categories`.`id` LEFT JOIN `products` ON `products`.`id` = `category_product`.`product_id` LEFT JOIN `products_details` ON `products_details`.`product_id` = `products`.`id` AND `products_details`.`webstore_id` = 1 WHERE (`products_details`.`price` > '0' OR `products_details`.`price` IS NULL) AND (`products_details`.`is_enabled` = '1' OR `products_details`.`is_enabled` IS NULL) AND `l` > '1' AND `r` < '152' AND `level` <= '3' GROUP BY `categories`.`id` ORDER BY `l` ASC
0.73ms
SELECT * FROM `categories_pushes` WHERE `category_id` IN ('4', '78', '44', '88', '76', '153', '138', '2', '151', '30', '84', '8', '11', '12', '13', '14', '9', '15', '93', '17', '16', '82', '81', '83', '87', '80', '79', '109', '18', '5', '19', '22', '23', '24', '26', '25', '95', '27', '160', '74', '63', '64', '75', '96', '97', '99', '100', '101', '103', '102', '104', '105', '163', '108', '107', '106', '33', '34', '37', '38', '39', '41', '40', '94', '42', '91', '60', '61') ORDER BY `position` ASC
0.32ms
SELECT * FROM `categories` WHERE `id` = '7' LIMIT 1
166.62ms
SELECT `categories`.*, `categories_details`.`is_enabled`, COUNT(products.id) AS nb_products FROM `categories` INNER JOIN `categories_details` ON `categories_details`.`category_id` = `categories`.`id` AND `categories_details`.`webstore_id` = 1 LEFT JOIN `category_product` ON `category_product`.`category_id` = `categories`.`id` LEFT JOIN `products` ON `products`.`id` = `category_product`.`product_id` LEFT JOIN `products_details` ON `products_details`.`product_id` = `products`.`id` AND `products_details`.`webstore_id` = 1 WHERE (`products_details`.`price` > '0' OR `products_details`.`price` IS NULL) AND (`products_details`.`is_enabled` = '1' OR `products_details`.`is_enabled` IS NULL) AND `l` > '153' AND `r` < '298' AND `level` <= '3' GROUP BY `categories`.`id` ORDER BY `l` ASC
0.59ms
SELECT * FROM `categories_pushes` WHERE `category_id` IN ('110', '111', '115', '116', '117', '120', '121', '119', '148', '68', '69', '140', '141', '142', '53', '55', '85', '86', '159', '125', '126', '127', '129', '128', '136', '132', '165', '134', '158', '66', '67', '144', '150', '145', '124', '32', '73', '123', '137', '154', '139', '167') ORDER BY `position` ASC
Name Running Time (ms) Difference
default_timer
992.73ms (time from start to render)
 
Controller entry
0.00ms
+ 0.00ms
View #1 - catalog.metacategory
373.73ms
+ 373.73ms
View #2 - components.page-header
392.15ms
+ 18.42ms
View #3 - components.button
392.57ms
+ 0.42ms
View #4 - components.button
392.85ms
+ 0.28ms
View #5 - components.filters
393.19ms
+ 0.34ms
View #6 - components.close-button
393.46ms
+ 0.27ms
View #7 - components.accordion.wrapper
393.66ms
+ 0.20ms
View #8 - components.accordion.bodies.filters.colors
393.69ms
+ 0.03ms
View #9 - components.accordion.wrapper
394.78ms
+ 1.10ms
View #10 - components.accordion.bodies.filters.sizes
394.81ms
+ 0.03ms
View #11 - components.accordion.wrapper
396.15ms
+ 1.34ms
View #12 - components.accordion.bodies.filters.list
396.19ms
+ 0.04ms
View #13 - components.button
396.40ms
+ 0.22ms
View #14 - components.button
396.60ms
+ 0.20ms
View #15 - components.button
396.78ms
+ 0.18ms
View #16 - components.button
397.02ms
+ 0.24ms
View #17 - components.pagination
397.20ms
+ 0.18ms
View #18 - components.button
397.39ms
+ 0.18ms
View #19 - catalog.partials.products-listing
397.57ms
+ 0.19ms
View #20 - components.product-card
397.75ms
+ 0.18ms
View #21 - components.add-to-wishlist
430.33ms
+ 32.58ms
View #22 - components.product-card
431.67ms
+ 1.34ms
View #23 - components.add-to-wishlist
433.58ms
+ 1.91ms
View #24 - components.product-card
434.66ms
+ 1.08ms
View #25 - components.add-to-wishlist
436.92ms
+ 2.26ms
View #26 - components.product-card
437.96ms
+ 1.05ms
View #27 - components.add-to-wishlist
439.56ms
+ 1.60ms
View #28 - components.product-card
440.54ms
+ 0.97ms
View #29 - components.add-to-wishlist
442.95ms
+ 2.41ms
View #30 - components.product-card
443.96ms
+ 1.01ms
View #31 - components.add-to-wishlist
446.48ms
+ 2.52ms
View #32 - components.product-card
447.50ms
+ 1.02ms
View #33 - components.add-to-wishlist
450.02ms
+ 2.52ms
View #34 - components.product-card
451.00ms
+ 0.98ms
View #35 - components.add-to-wishlist
453.56ms
+ 2.56ms
View #36 - components.product-card
454.54ms
+ 0.98ms
View #37 - components.add-to-wishlist
456.83ms
+ 2.29ms
View #38 - components.product-card
457.86ms
+ 1.03ms
View #39 - components.add-to-wishlist
460.04ms
+ 2.19ms
View #40 - components.product-card
461.08ms
+ 1.04ms
View #41 - components.add-to-wishlist
463.55ms
+ 2.47ms
View #42 - components.product-card
464.55ms
+ 1.00ms
View #43 - components.add-to-wishlist
467.18ms
+ 2.63ms
View #44 - components.product-card
468.21ms
+ 1.03ms
View #45 - components.add-to-wishlist
470.19ms
+ 1.99ms
View #46 - components.product-card
471.17ms
+ 0.97ms
View #47 - components.add-to-wishlist
473.95ms
+ 2.79ms
View #48 - components.product-card
474.99ms
+ 1.04ms
View #49 - components.add-to-wishlist
477.19ms
+ 2.20ms
View #50 - components.product-card
478.19ms
+ 1.00ms
View #51 - components.add-to-wishlist
480.32ms
+ 2.13ms
View #52 - components.product-card
481.37ms
+ 1.04ms
View #53 - components.add-to-wishlist
483.67ms
+ 2.30ms
View #54 - components.product-card
484.70ms
+ 1.03ms
View #55 - components.add-to-wishlist
487.79ms
+ 3.09ms
View #56 - components.product-card
488.85ms
+ 1.05ms
View #57 - components.add-to-wishlist
492.37ms
+ 3.53ms
View #58 - components.product-card
493.75ms
+ 1.38ms
View #59 - components.add-to-wishlist
496.08ms
+ 2.33ms
View #60 - components.product-card
497.28ms
+ 1.20ms
View #61 - components.add-to-wishlist
499.50ms
+ 2.22ms
View #62 - components.product-card
500.50ms
+ 1.01ms
View #63 - components.add-to-wishlist
502.61ms
+ 2.10ms
View #64 - components.product-card
503.63ms
+ 1.03ms
View #65 - components.add-to-wishlist
505.85ms
+ 2.22ms
View #66 - components.product-card
506.92ms
+ 1.06ms
View #67 - components.add-to-wishlist
509.12ms
+ 2.21ms
View #68 - components.product-card
510.09ms
+ 0.97ms
View #69 - components.add-to-wishlist
512.52ms
+ 2.43ms
View #70 - components.product-card
513.58ms
+ 1.06ms
View #71 - components.add-to-wishlist
515.25ms
+ 1.67ms
View #72 - components.product-card
516.35ms
+ 1.10ms
View #73 - components.add-to-wishlist
517.96ms
+ 1.61ms
View #74 - components.product-card
518.91ms
+ 0.95ms
View #75 - components.add-to-wishlist
520.51ms
+ 1.60ms
View #76 - components.product-card
521.54ms
+ 1.03ms
View #77 - components.add-to-wishlist
523.92ms
+ 2.38ms
View #78 - components.product-card
524.96ms
+ 1.04ms
View #79 - components.add-to-wishlist
528.09ms
+ 3.12ms
View #80 - components.product-card
529.27ms
+ 1.19ms
View #81 - components.add-to-wishlist
531.85ms
+ 2.58ms
View #82 - components.product-card
532.92ms
+ 1.07ms
View #83 - components.add-to-wishlist
534.72ms
+ 1.80ms
View #84 - components.seo-footer
535.91ms
+ 1.19ms
View #85 - components.pagination
536.20ms
+ 0.29ms
View #86 - components.button
536.46ms
+ 0.26ms
View #87 - components.button
537.16ms
+ 0.69ms
View #88 - components.button
537.37ms
+ 0.22ms
View #89 - layout.layout
537.59ms
+ 0.22ms
View #90 - layout.meta
561.30ms
+ 23.71ms
View #91 - modules.notification
614.87ms
+ 53.57ms
View #92 - modules.header
615.48ms
+ 0.61ms
View #93 - modules.menu
938.98ms
+ 323.50ms
View #94 - components.menu-first-level
939.39ms
+ 0.40ms
View #95 - components.menu-second-level
941.27ms
+ 1.88ms
View #96 - components.menu-pushes
943.98ms
+ 2.71ms
View #97 - components.menu-pushes
949.11ms
+ 5.13ms
View #98 - components.menu-pushes
952.58ms
+ 3.47ms
View #99 - components.menu-pushes
953.81ms
+ 1.22ms
View #100 - components.menu-pushes
954.57ms
+ 0.76ms
View #101 - svg.logo
955.10ms
+ 0.53ms
View #102 - modules.messages
955.88ms
+ 0.78ms
View #103 - modules.breadcrumbs
956.28ms
+ 0.40ms
View #104 - modules.footer
956.47ms
+ 0.19ms
View #105 - components.reinsurance-support
956.72ms
+ 0.25ms
View #106 - components.field
957.13ms
+ 0.41ms
View #107 - components.csrf-field
957.37ms
+ 0.23ms
View #108 - components.button
957.50ms
+ 0.13ms
View #109 - components.footer-links
957.69ms
+ 0.19ms
View #110 - modules.panel
959.10ms
+ 1.41ms
View #111 - modules.popin
959.22ms
+ 0.12ms
View #112 - modules.blueshift-popin
959.33ms
+ 0.11ms
View #113 - modules.search-panel
959.90ms
+ 0.58ms
View #114 - catalog.search-form
960.12ms
+ 0.22ms
View #115 - components.field
960.40ms
+ 0.28ms
View #116 - modules.toaster
960.93ms
+ 0.53ms
View #117 - layout.overlay
961.03ms
+ 0.10ms
View #118 - modules.webstore-switcher
962.35ms
+ 1.32ms
View #119 - components.close-button
962.62ms
+ 0.26ms
View #120 - components.native-select
962.89ms
+ 0.28ms
View #121 - components.native-select
963.20ms
+ 0.30ms
View #122 - components.button
963.36ms
+ 0.16ms
View #123 - components.button
963.56ms
+ 0.21ms
View #124 - helpers.grid
963.73ms
+ 0.17ms
View #125 - modules.loading-bar
963.85ms
+ 0.11ms
View #126 - 3rdparties.didomi
982.39ms
+ 18.54ms
View #127 - 3rdparties.gtm
982.59ms
+ 0.20ms
View #128 - 3rdparties.abtasty.main
982.69ms
+ 0.11ms
View #129 - 3rdparties.abtasty.tracking
982.79ms
+ 0.09ms
View #130 - 3rdparties.blueshift
982.96ms
+ 0.17ms
View #131 - 3rdparties.sizebay.main
983.29ms
+ 0.33ms
View #132 - 3rdparties.sizebay.tracking
983.46ms
+ 0.17ms
View #133 - 3rdparties.gsi
983.63ms
+ 0.17ms
View #134 - 3rdparties.applepay
983.71ms
+ 0.08ms
View #135 - 3rdparties.alma
983.87ms
+ 0.16ms
View #136 - path: /var/www/html/laravel/profiling/template.blade.php
992.79ms
+ 8.92ms
... array(39)
REDIRECT_HTTP_AUTHORIZATION string(0)
REDIRECT_STATUS string(3) 200
HTTP_AUTHORIZATION string(0)
HTTP_HOST string(19) fursac.period.paris
HTTP_USER_AGENT string(103) Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible;
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_ACCEPT string(3) */*
HTTP_ACCEPT_ENCODING string(23) gzip, br, zstd, deflate
HTTP_X_FORWARDED_FOR string(14) 216.73.217.100
HTTP_X_FORWARDED_HOST string(19) fursac.period.paris
HTTP_X_FORWARDED_PORT string(3) 443
HTTP_X_FORWARDED_PROTO string(5) https
HTTP_X_FORWARDED_SERVER string(12) 2dba27a72b09
HTTP_X_REAL_IP string(14) 216.73.217.100
PATH string(60) /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE string(80) <address>Apache/2.4.38 (Debian) Server at fursac.period.paris Port
<address>Apache/2.4.38 (Debian) Server at fursac.period.paris Port 80</address>
SERVER_SOFTWARE string(22) Apache/2.4.38 (Debian)
SERVER_NAME string(19) fursac.period.paris
SERVER_ADDR string(10) 172.19.0.4
SERVER_PORT int 443
REMOTE_ADDR string(10) 172.19.0.3
DOCUMENT_ROOT string(13) /var/www/html
REQUEST_SCHEME string(4) http
CONTEXT_PREFIX string(0)
CONTEXT_DOCUMENT_ROOT string(13) /var/www/html
SERVER_ADMIN string(19) webmaster@localhost
SCRIPT_FILENAME string(23) /var/www/html/index.php
REMOTE_PORT string(5) 46762
REDIRECT_URL string(27) /fr/m-pull-laine-homme.html
REDIRECT_QUERY_STRING string(34) /fr/m-pull-laine-homme.html&page=3
GATEWAY_INTERFACE string(7) CGI/1.1
SERVER_PROTOCOL string(8) HTTP/1.1
REQUEST_METHOD string(3) GET
QUERY_STRING string(34) /fr/m-pull-laine-homme.html&page=3
REQUEST_URI string(34) /fr/m-pull-laine-homme.html?page=3
SCRIPT_NAME string(10) /index.php
PHP_SELF string(10) /index.php
REQUEST_TIME_FLOAT float 1784164429.73
REQUEST_TIME int 1784164429
HTTPS string(2) on
... array(2)
csrf_token string(40) thbghmUck3hICSxhjezVAGHnCSrL4VpbvNW4qaM1
cart string(12) Order object