Page Time: 0.0801s

Memory: 11.7129 MB (Peak: 12.6116 MB)

Queries (29, time: 0.0086s, 10.8%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.001383
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using index condition
  2. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: modLogCounts
    Run Time: 0.000153
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000076
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: dark_postrating_ratings
    Run Time: 0.000073
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  5. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra,
    	IF(sticky_thread_order.display_order IS NULL, 1000, sticky_thread_order.display_order) AS sticky_display_order
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    	LEFT JOIN sticky_thread_order AS sticky_thread_order ON(sticky_thread_order.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 17929
    Run Time: 0.000198
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEsticky_thread_orderrefPRIMARYPRIMARY4const1Using index
  6. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 48
    Run Time: 0.000162
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  7. SELECT post.*
    	,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date,
    pr_cache.rating_cache,
    pr2.rating
    FROM xf_post AS post
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    left join dark_postrating_post_cache pr_cache ON (post.post_id = pr_cache.post_id)
    left join dark_postrating pr2 on (post.post_id = pr2.post_id and pr2.user_id = 0)
    WHERE post.thread_id = ?
    	 AND (post.position >= 80 AND post.position < 100) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 17929
    Run Time: 0.000641
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 18Using index condition; Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4rassvet.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4rassvet.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4rassvet.post.user_id1 
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22rassvet.post.user_id,func1Using where
    SIMPLEpr_cacheeq_refPRIMARYPRIMARY4rassvet.post.post_id1 
    SIMPLEpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8rassvet.post.post_id,const1 
  8. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 17929
    Run Time: 0.000061
  9. SELECT post_id
    FROM xf_bookmark
    WHERE xf_bookmark.user_id = ?
    Params: 0
    Run Time: 0.000132
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_bookmarkindex post_user_id8 351Using where; Using index
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 9bc47cf617aefc458e34b53b46fa526b, , 1714272149
    Run Time: 0.000085
  11. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=17929&page=5, 1714268549,
    Run Time: 0.000060
  12. SELECT *
    FROM xf_related_content_cache
    WHERE content_id = ?
                    AND content_type = ?
    	AND expiry_date > ?
    Params: 17929, thread, 1714268549
    Run Time: 0.000136
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_related_content_cacheconstcontent_id_content_typecontent_id_content_type31const,const1 
  13. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'tinhte_xentag_bb_code_tag_tag', 'tinhte_xentag_bb_code_tag_hashtag', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'doublepost_bb_code_tag', 'conversationpost_post', 'conversationpost_userinfo', 'wf_widget_wrapper', 'related_content_results', 'tinhte_xentag_widget_related_threads', 'thread_view', 'notice_cookies', 'EWRatendo_Navtabs', 'modess_moderator_bar_mod_log_counts', 'wf_hook_moderator_bar', 'wf_revealer', 'dark_postrating', 'dark_postrating_member', 'dark_postrating_member_totals', 'message_user_info_extra', 'user_criteria_content', 'thread_list_item_icon_key', 'dark_postrating_member_notable_tabs', 'dark_postrating_account_wrapper', 'dark_postrating_navigation_visitor_tab', 'dark_postrating_visitor_panel', 'dark_postrating_member_card', 'dark_postrating_member_info', 'dark_postrating_message_user_info', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 2
    Run Time: 0.000539
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 35Using index condition
  14. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('events')
    Params: 2
    Run Time: 0.000084
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  15. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_91ea024612b384d4bd359', 'wfc__1_thread_view_t17929')
    Run Time: 0.000099
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using index condition
  16. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_1b70519067a7ea4006494')
    Run Time: 0.000074
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  17. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_1b70519067a7ea4006494, a:1:{s:28:"thread_view_lock_rct17929_19";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1714268549;}}
    Run Time: 0.000072
  18. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_91ea024612b384d4bd359, a:1:{s:23:"thread_view_rct17929_19";a:2:{s:4:"html";s:0:"";s:4:"time";i:1714268549;}}
    Run Time: 0.000055
  19. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_1b70519067a7ea4006494, a:1:{s:28:"thread_view_lock_rct17929_19";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714268549;}}
    Run Time: 0.000071
  20. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_1d88fb5eaf3526e014cb2')
    Run Time: 0.000067
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  21. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_1d88fb5eaf3526e014cb2, a:1:{s:26:"thread_view_lock_t17929_18";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1714268549;}}
    Run Time: 0.000055
  22. SELECT search_index.content_type, search_index.content_id
    FROM xf_search_index AS search_index
    
    WHERE MATCH(search_index.title, search_index.message, search_index.metadata) AGAINST (? IN BOOLEAN MODE)
    	
    
    ORDER BY search_index.item_date desc
    LIMIT 200
    Params: +_md_tag_12 +(_md_content_thread)
    Run Time: 0.000806
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsearch_indexfulltexttitle_message_metadatatitle_message_metadata0 1Using where; Using filesort
  23. SELECT thread.*
    	,
    		user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    		node.title AS node_title, node.node_name,
    		post.message, post.attach_count,
    		NULL AS thread_read_date,
    		0 AS user_post_count,
    	permission.cache_value AS node_permission_cache,
    		pr_cache.rating_cache
    FROM xf_thread AS thread
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_post AS post ON
    			(post.post_id = thread.first_post_id)
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = thread.node_id)
    		left join dark_postrating_post_cache pr_cache ON (thread.first_post_id = pr_cache.post_id)
    WHERE thread.thread_id IN (21865, 21776, 21656, 21542, 21537, 21217, 21194, 21162, 21018, 21005, 20844, 20785, 20526, 20508, 20327, 20170, 20113, 20068, 19851, 19831, 19353, 19262, 19234, 19033, 18879, 18555, 18525, 18499, 18462, 18165, 18136, 18104, 18005, 17992, 17931, 17929, 17922, 17921, 17838, 17795, 17794, 17627, 17463, 17426, 17389, 17266, 17204, 16677, 16600, 16568, 16546, 16401, 16351, 16270, 16131, 16103, 15962, 15905, 15714, 15619, 15604, 15431, 15205, 14799, 14669, 14479, 14440, 14393, 13485, 13474, 13459, 13446, 13411, 13310, 13193, 13098, 12902)
    Run Time: 0.001869
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 77Using index condition
    SIMPLEusereq_refPRIMARYPRIMARY4rassvet.thread.user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4rassvet.thread.node_id1 
    SIMPLEposteq_refPRIMARYPRIMARY4rassvet.thread.first_post_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,rassvet.thread.node_id1Using where
    SIMPLEpr_cacheeq_refPRIMARYPRIMARY4rassvet.thread.first_post_id1 
  24. SELECT *
    FROM xf_node
    
    ORDER BY lft ASC
    Run Time: 0.000174
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALL    57Using filesort
  25. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000194
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const61Using index condition
  26. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE ((thread.node_id IN (50, 3, 4, 5, 6, 7, 28, 29, 36, 37, 38, 39, 30, 40, 31, 51, 34, 35, 32, 33, 18, 19, 25, 27, 20, 21, 22, 23, 24, 48, 59, 60, 61, 26, 47, 8, 12, 62, 9, 13, 55, 10, 42, 43, 44, 14, 15, 16, 17, 49, 56)) AND (thread.discussion_state IN ('visible'))) AND (thread.thread_id IN (21865, 21776, 21656, 21542, 21537, 21217, 21194, 21162, 21018, 21005, 20844, 20785, 20526, 20508, 20327, 20170, 20113, 20068, 19851, 19831, 19353, 19262, 19234, 19033, 18879, 18555, 18525, 18499, 18462, 18165, 18136, 18104, 18005, 17992, 17931, 17929, 17922, 17921, 17838, 17795, 17794, 17627, 17463, 17426, 17389, 17266, 17204, 16677, 16600, 16568, 16546, 16401, 16351, 16270, 16131, 16103, 15962, 15905, 15714, 15619, 15604, 15431, 15205, 14799, 14669, 14479, 14440, 14393, 13485, 13474, 13459, 13446, 13411, 13310, 13193, 13098, 12902))
    ORDER BY thread.post_date DESC
     LIMIT 20
    Run Time: 0.000904
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4 77Using index condition; Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4rassvet.thread.user_id1 
  27. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view_t17929, a:1:{s:21:"thread_view_t17929_18";a:2:{s:4:"html";s:13245:"<div class="avatarList"> <ul> <li class="thread-21865 thread-node-12"> <a href="index.php?members/sasha_chi.13167/" class="avatar Av13167s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Sasha_CHI" /></a> <a title="Дизайн-интерьера. Декорирование CHI Design" class="Tooltip" href="index.php?threads/dizajn-interera-dekorirovanie-chi-design.21865/"> Дизайн-интерьера. Декорирование... </a> <div class="userTitle"> <a href="index.php?members/sasha_chi.13167/">Sasha_CHI</a> posted <span class="DateTime" title="29 авг 2022 в 19:19">29 авг 2022</span> </div> </li> <li class="thread-21776 thread-node-31"> <a href="index.php?members/oleg-ovcharenko.13036/" class="avatar Av13036s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Олег Овчаренко" /></a> <a href="index.php?threads/trebuetsja-prorab-otdelochnyx-rabot.21776/"> Требуется прораб отделочных работ </a> <div class="userTitle"> <a href="index.php?members/oleg-ovcharenko.13036/">Олег Овчаренко</a> posted <span class="DateTime" title="9 май 2022 в 18:28">9 май 2022</span> </div> </li> <li class="thread-21656 thread-node-48"> <a href="index.php?members/blackcat.12625/" class="avatar Av12625s" data-avatarhtml="true"><img src="data/avatars/s/12/12625.jpg?1639689539" width="48" height="48" alt="blackcat" /></a> <a href="index.php?threads/kvartira-bez-pola.21656/"> Квартира без пола </a> <div class="userTitle"> <a href="index.php?members/blackcat.12625/">blackcat</a> posted <span class="DateTime" title="2 фев 2022 в 20:42">2 фев 2022</span> </div> </li> <li class="thread-21542 thread-node-48"> <a href="index.php?members/stu.1581/" class="avatar Av1581s" data-avatarhtml="true"><img src="data/avatars/s/1/1581.jpg?1475243822" width="48" height="48" alt="stu" /></a> <a title="Бригада и внутренние двери из Германии" class="Tooltip" href="index.php?threads/brigada-i-vnutrennie-dveri-iz-germanii.21542/"> Бригада и внутренние двери из... </a> <div class="userTitle"> <a href="index.php?members/stu.1581/">stu</a> posted <span class="DateTime" title="30 сен 2021 в 21:35">30 сен 2021</span> </div> </li> <li class="thread-21537 thread-node-48"> <a href="index.php?members/kanarejki-9.32/" class="avatar Av32s" data-avatarhtml="true"><img src="data/avatars/s/0/32.jpg?1359665533" width="48" height="48" alt="Канарейки 9" /></a> <a href="index.php?threads/podlatat-potolok-v-vannoj.21537/"> Подлатать потолок в ванной </a> <div class="userTitle"> <a href="index.php?members/kanarejki-9.32/">Канарейки 9</a> posted <span class="DateTime" title="28 сен 2021 в 19:01">28 сен 2021</span> </div> </li> <li class="thread-21217 thread-node-48"> <a href="index.php?members/remont-nl.11729/" class="avatar Av11729s" data-avatarhtml="true"><img src="data/avatars/s/11/11729.jpg?1611339082" width="48" height="48" alt="Remont.nl" /></a> <a href="index.php?threads/vse-o-remonte.21217/"> Все о ремонте </a> <div class="userTitle"> <a href="index.php?members/remont-nl.11729/">Remont.nl</a> posted <span class="DateTime" title="22 янв 2021 в 19:10">22 янв 2021</span> </div> </li> <li class="thread-21194 thread-node-48"> <a href="index.php?members/pavlo.9876/" class="avatar Av9876s" data-avatarhtml="true"><img src="data/avatars/s/9/9876.jpg?1609754297" width="48" height="48" alt="Pavlo" /></a> <a href="index.php?threads/polnaja-rekonstrukcija-vannoj-tualeta.21194/"> Полная реконструкция ванной/туалета </a> <div class="userTitle"> <a href="index.php?members/pavlo.9876/">Pavlo</a> posted <span class="DateTime" title="3 янв 2021 в 16:40">3 янв 2021</span> </div> </li> <li class="thread-21162 thread-node-59"> <a href="index.php?members/underketzer.9981/" class="avatar Av9981s" data-avatarhtml="true"><img src="data/avatars/s/9/9981.jpg?1606919435" width="48" height="48" alt="underketzer" /></a> <a href="index.php?threads/pochinit-mashinu-bjudzhetno.21162/"> Починить машину бюджетно? </a> <div class="userTitle"> <a href="index.php?members/underketzer.9981/">underketzer</a> posted <span class="DateTime" title="2 дек 2020 в 15:29">2 дек 2020</span> </div> </li> <li class="thread-21018 thread-node-48"> <a href="index.php?members/mirra.7898/" class="avatar Av7898s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Mirra" /></a> <a href="index.php?threads/pomosch-v-poklejke-oboev.21018/"> Помощь в поклейке обоев </a> <div class="userTitle"> <a href="index.php?members/mirra.7898/">Mirra</a> posted <span class="DateTime" title="29 июл 2020 в 13:56">29 июл 2020</span> </div> </li> <li class="thread-21005 thread-node-48"> <a href="index.php?members/silverthorne.7801/" class="avatar Av7801s" data-avatarhtml="true"><img src="data/avatars/s/7/7801.jpg?1519994354" width="48" height="48" alt="Silverthorne" /></a> <a title="Изготовить дверь для кухонного шкафа" class="Tooltip" href="index.php?threads/izgotovit-dver-dlja-kuxonnogo-shkafa.21005/"> Изготовить дверь для кухонного... </a> <div class="userTitle"> <a href="index.php?members/silverthorne.7801/">Silverthorne</a> posted <span class="DateTime" title="20 июл 2020 в 11:10">20 июл 2020</span> </div> </li> <li class="thread-20844 thread-node-12"> <a href="index.php?members/alleksandr23.7965/" class="avatar Av7965s" data-avatarhtml="true"><img src="data/avatars/s/7/7965.jpg?1586434728" width="48" height="48" alt="alleksandr23" /></a> <a title="Услуги ремонтных работ по всем Нидерландам" class="Tooltip" href="index.php?threads/uslugi-remontnyx-rabot-po-vsem-niderlandam.20844/"> Услуги ремонтных работ по всем... </a> <div class="userTitle"> <a href="index.php?members/alleksandr23.7965/">alleksandr23</a> posted <span class="DateTime" title="9 апр 2020 в 15:06">9 апр 2020</span> </div> </li> <li class="thread-20785 thread-node-59"> <a href="index.php?members/sergey.421/" class="avatar Av421s" data-avatarhtml="true"><img src="data/avatars/s/0/421.jpg?1359796701" width="48" height="48" alt="SergeY" /></a> <a href="index.php?threads/kuzovnoj-remont-nebolshaja-vmjatina.20785/"> Кузовной ремонт - небольшая вмятина </a> <div class="userTitle"> <a href="index.php?members/sergey.421/">SergeY</a> posted <span class="DateTime" title="29 фев 2020 в 11:16">29 фев 2020</span> </div> </li> <li class="thread-20526 thread-node-24"> <a href="index.php?members/shortysta.5938/" class="avatar Av5938s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="shortysta" /></a> <a href="index.php?threads/remont-mikrovolnovki-amsterdam.20526/"> Ремонт микроволновки Амстердам </a> <div class="userTitle"> <a href="index.php?members/shortysta.5938/">shortysta</a> posted <span class="DateTime" title="24 окт 2019 в 19:20">24 окт 2019</span> </div> </li> <li class="thread-20508 thread-node-59"> <a href="index.php?members/vlads.7049/" class="avatar Av7049s" data-avatarhtml="true"><img src="data/avatars/s/7/7049.jpg?1669896964" width="48" height="48" alt="Vlads" /></a> <a href="index.php?threads/maljarka.20508/"> Малярка </a> <div class="userTitle"> <a href="index.php?members/vlads.7049/">Vlads</a> posted <span class="DateTime" title="18 окт 2019 в 17:11">18 окт 2019</span> </div> </li> <li class="thread-20327 thread-node-51"> <a href="index.php?members/rulli.9869/" class="avatar Av9869s" data-avatarhtml="true"><img src="data/avatars/s/9/9869.jpg?1564395234" width="48" height="48" alt="rulli" /></a> <a href="index.php?threads/ljubye-vakansii.20327/"> Любые вакансии </a> <div class="userTitle"> <a href="index.php?members/rulli.9869/">rulli</a> posted <span class="DateTime" title="29 июл 2019 в 11:58">29 июл 2019</span> </div> </li> <li class="thread-20170 thread-node-48"> <a href="index.php?members/ekaterina-gor.9496/" class="avatar Av9496s" data-avatarhtml="true"><img src="https://secure.gravatar.com/avatar/246d2b8c8c91700c2bef6f9c383a6d61?s=48&amp;d=https%3A%2F%2Frassvet.com%2Fforum%2Fstyles%2Fsoft_responsive%2Fxenforo%2Favatars%2Favatar_female_s.png" width="48" height="48" alt="Ekaterina Gor" /></a> <a href="index.php?threads/zamena-plitki-na-teplom-polu.20170/"> Замена плитки на теплом полу </a> <div class="userTitle"> <a href="index.php?members/ekaterina-gor.9496/">Ekaterina Gor</a> posted <span class="DateTime" title="9 май 2019 в 11:30">9 май 2019</span> </div> </li> <li class="thread-20113 thread-node-12"> <a href="index.php?members/natalya-shevchenko.5369/" class="avatar Av5369s" data-avatarhtml="true"><img src="data/avatars/s/5/5369.jpg?1594227059" width="48" height="48" alt="Natalya Shevchenko" /></a> <a href="index.php?threads/raznoplanovye-remontnye-raboty.20113/"> Разноплановые ремонтные работы </a> <div class="userTitle"> <a href="index.php?members/natalya-shevchenko.5369/">Natalya Shevchenko</a> posted <span class="DateTime" title="14 апр 2019 в 18:13">14 апр 2019</span> </div> </li> <li class="thread-20068 thread-node-24"> <a href="index.php?members/tikovka.894/" class="avatar Av894s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Tikovka" /></a> <a title="Ремонт ванной комнаты - сколько стоит в среднем по больнице?" class="Tooltip" href="index.php?threads/remont-vannoj-komnaty-skolko-stoit-v-srednem-po-bolnice.20068/"> Ремонт ванной комнаты - сколько... </a> <div class="userTitle"> <a href="index.php?members/tikovka.894/">Tikovka</a> posted <span class="DateTime" title="29 мар 2019 в 13:36">29 мар 2019</span> </div> </li> <li class="thread-19851 thread-node-24"> <a href="index.php?members/akula-barakula.4400/" class="avatar Av4400s" data-avatarhtml="true"><img src="data/avatars/s/4/4400.jpg?1498552112" width="48" height="48" alt="akula.barakula" /></a> <a href="index.php?threads/remont-protechki-kryshi.19851/"> ремонт протечки крыши </a> <div class="userTitle"> <a href="index.php?members/akula-barakula.4400/">akula.barakula</a> posted <span class="DateTime" title="21 янв 2019 в 17:21">21 янв 2019</span> </div> </li> <li class="thread-19831 thread-node-30"> <a href="index.php?members/lawoman.8623/" class="avatar Av8623s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="LAWoman" /></a> <a href="index.php?threads/ehksplikacija-pomeschenij.19831/"> Экспликация помещений </a> <div class="userTitle"> <a href="index.php?members/lawoman.8623/">LAWoman</a> posted <span class="DateTime" title="11 янв 2019 в 13:02">11 янв 2019</span> </div> </li> </ul> </div>";s:4:"time";i:1714268549;}}
    Run Time: 0.000179
  28. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_1d88fb5eaf3526e014cb2, a:1:{s:26:"thread_view_lock_t17929_18";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714268549;}}
    Run Time: 0.000079
  29. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('nat_bodyjs')
    	AND style_id = ?
    	AND language_id = ?
    Params: 12, 2
    Run Time: 0.000154
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (195, XenForo Classes: 80)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/ModEss/Listener/Cog.php
  33. library/Tapatalk/Listener/LoadClassModel.php
  34. library/bdTagMe/Listener.php
  35. library/WidgetFramework/Listener.php
  36. library/TMS/Listener.php
  37. library/Tinhte/XenTag/Listener.php
  38. library/DoublePost/Listener/Cog.php
  39. library/Dark/PostRating/EventListener.php
  40. library/RelatedContents/Listener.php
  41. library/WidgetFramework/Option.php
  42. library/EWRatendo/Listener/Init.php
  43. library/XenForo/DataWriter/User.php
  44. library/XenForo/DataWriter.php
  45. library/bdTagMe/Helper/Template.php
  46. library/bdTagMe/ShippableHelper/Updater.php
  47. library/bdTagMe/Option.php
  48. library/NodesAsTabs/Listen.php
  49. library/XenForo/Router.php
  50. library/XenForo/Route/Filter.php
  51. library/XenForo/Route/Interface.php
  52. library/XenForo/Route/ResponseSuffix.php
  53. library/XenForo/Route/Prefix.php
  54. library/WidgetFramework/Route/Filter/PageX.php
  55. library/XenForo/Route/Prefix/Threads.php
  56. library/EWRutiles/Sitemap/Listener/Route.php
  57. library/XenForo/RouteMatch.php
  58. library/XenForo/ControllerPublic/Thread.php
  59. library/XenForo/ControllerPublic/Abstract.php
  60. library/XenForo/Controller.php
  61. library/EWRutiles/Sitemap/Listener/Controller.php
  62. library/EWRatendo/Listener/Controller.php
  63. library/ConversationPost/Listener.php
  64. library/Andy/SimilarThreads/Listener.php
  65. library/Andy/Bookmark/Listener.php
  66. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  67. library/Tinhte/XenTag/XenForo/ControllerPublic/Thread.php
  68. library/ModEss/ControllerPublic/Thread.php
  69. library/NodesAsTabs/ControllerPublic/Thread.php
  70. library/DoublePost/ControllerPublic/Thread.php
  71. library/Andy/SimilarThreads/ControllerPublic/Thread.php
  72. library/Andy/Bookmark/ControllerPublic/Thread.php
  73. library/XenForo/Input.php
  74. library/XenForo/Session.php
  75. library/XenForo/Helper/Ip.php
  76. library/XenForo/Visitor.php
  77. library/XenForo/Model/User.php
  78. library/Waindigo/JoinUserGroup/Listener/LoadClass.php
  79. library/Waindigo/Listener/LoadClass.php
  80. library/Waindigo/Listener/LoadClass/20150318.php
  81. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/User.php
  82. library/bdTagMe/XenForo/Model/User.php
  83. library/WidgetFramework/XenForo/Model/User.php
  84. library/Dark/PostRating/Model/User.php
  85. library/XenForo/Permission.php
  86. library/XenForo/Helper/Php.php
  87. library/XenForo/Phrase.php
  88. library/XenForo/Locale.php
  89. library/Waindigo/JoinUserGroup/Listener/ControllerPreDispatch.php
  90. library/Waindigo/Listener/ControllerPreDispatch.php
  91. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  92. library/XenForo/ControllerHelper/ForumThreadPost.php
  93. library/XenForo/ControllerHelper/Abstract.php
  94. library/XenForo/Model/Thread.php
  95. library/WidgetFramework/XenForo/Model/Thread.php
  96. library/Tinhte/XenTag/XenForo/Model/Thread.php
  97. library/ModEss/Model/Thread.php
  98. library/Dark/PostRating/Model/Thread.php
  99. library/Dark/PostRating/Model.php
  100. library/XenForo/Model/Forum.php
  101. library/Tinhte/XenTag/XenForo/Model/Forum.php
  102. library/Tinhte/XenTag/Constants.php
  103. library/Tinhte/XenTag/Helper.php
  104. library/XenForo/Helper/String.php
  105. library/XenForo/Helper/Discussion.php
  106. library/XenForo/Model/Post.php
  107. library/Snog/FirstPostEdit/Listener/Post.php
  108. library/ModEss/Model/Post.php
  109. library/DoublePost/Model/Post.php
  110. library/Dark/PostRating/Model/Post.php
  111. library/Snog/FirstPostEdit/Model/Post.php
  112. library/ModEss/Model/ModEss.php
  113. library/XenForo/Model/Attachment.php
  114. library/XenForo/Model/Node.php
  115. library/Tapatalk/Model/Node.php
  116. library/ModEss/Model/Node.php
  117. library/XenForo/Route/Prefix/Categories.php
  118. library/XenForo/Route/Prefix/Forums.php
  119. library/XenForo/ControllerResponse/View.php
  120. library/XenForo/ControllerResponse/Abstract.php
  121. library/XenForo/Helper/Cookie.php
  122. library/NodesAsTabs/API.php
  123. library/NodesAsTabs/Model/Options.php
  124. library/Tapatalk/Listener/ControllerPostDispatch.php
  125. library/XenForo/ViewRenderer/HtmlPublic.php
  126. library/XenForo/ViewRenderer/Abstract.php
  127. library/XenForo/Template/Public.php
  128. library/XenForo/Template/Abstract.php
  129. library/WidgetFramework/Core.php
  130. library/XenForo/Model/Moderator.php
  131. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/Moderator.php
  132. library/ModEss/Model/Moderator.php
  133. library/WidgetFramework/Model/Widget.php
  134. library/WidgetFramework/Helper/Sort.php
  135. library/WidgetFramework/WidgetRenderer.php
  136. library/XenForo/ViewPublic/Thread/View.php
  137. library/XenForo/ViewPublic/Base.php
  138. library/XenForo/View.php
  139. library/Tinhte/XenTag/XenForo/ViewPublic/Thread/View.php
  140. library/WidgetFramework/XenForo/View1.php
  141. library/RelatedContents/ViewPublic/ThreadView.php
  142. library/XenForo/Model/Tag.php
  143. library/Tinhte/XenTag/XenForo/Model/Tag.php
  144. library/RelatedContents/Model/Tag.php
  145. library/XenForo/BbCode/Parser.php
  146. library/XenForo/BbCode/Formatter/Base.php
  147. library/bdTagMe/XenForo/BbCode/Formatter/Base.php
  148. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  149. library/Tinhte/XenTag/XenForo/BbCode/Formatter/Base.php
  150. library/DoublePost/BbCode/Formatter/Base.php
  151. library/XenForo/ViewPublic/Helper/Message.php
  152. library/XenForo/BbCode/TextWrapper.php
  153. library/Tinhte/XenTag/ContentWrapper/Post.php
  154. library/Tinhte/XenTag/ContentWrapper/Abstract.php
  155. library/Tinhte/XenTag/Option.php
  156. library/RelatedContents/WidgetRenderer/Thread.php
  157. library/WidgetFramework/Model/Cache.php
  158. library/Tinhte/XenTag/WidgetRenderer/RelatedThreads.php
  159. library/XenForo/Route/Prefix/Members.php
  160. library/bdTagMe/XenForo/Route/Prefix/Members.php
  161. library/memberMap/Listener/Navigation.php
  162. library/memberMap/Model/ViewMap.php
  163. library/EWRatendo/Listener/NavTabs.php
  164. library/EWRatendo/Model/Perms.php
  165. library/NodesAsTabs/NavTabs.php
  166. library/EWRutiles/Sitemap/Listener/Params.php
  167. library/WidgetFramework/Template/Extended.php
  168. library/XenForo/Route/Prefix/Tags.php
  169. library/Tapatalk/EventListener/Hook.php
  170. library/EWRatendo/Listener/Template.php
  171. library/Tapatalk/Listener/TemplatePostRender.php
  172. library/XenForo/Route/Prefix/Posts.php
  173. library/XenForo/Model/Avatar.php
  174. library/XenForo/Model/Search.php
  175. library/Tapatalk/Model/Search.php
  176. library/XenForo/Search/Searcher.php
  177. library/XenForo/Search/SourceHandler/Abstract.php
  178. library/XenForo/Search/SourceHandler/MySqlFt.php
  179. library/XenForo/Search/DataHandler/Thread.php
  180. library/XenForo/Search/DataHandler/Abstract.php
  181. library/XenForo/NodeHandler/LinkForum.php
  182. library/XenForo/NodeHandler/Abstract.php
  183. library/XenForo/NodeHandler/Category.php
  184. library/XenForo/NodeHandler/Forum.php
  185. library/XenForo/NodeHandler/Page.php
  186. library/XenForo/Model/LinkForum.php
  187. library/XenForo/Model/Category.php
  188. library/XenForo/Model/Page.php
  189. library/WidgetFramework/Helper/String.php
  190. library/WidgetFramework/WidgetRenderer/Empty.php
  191. library/XenForo/Helper/Criteria.php
  192. library/XenForo/Debug.php
  193. mobiquo/mbqFrame/3rdLib/classTTConnection.php
  194. mobiquo/smartbanner/head.inc.php
  195. library/XenForo/ViewRenderer/Json.php