Page Time: 0.0778s

Memory: 11.6988 MB (Peak: 12.6131 MB)

Queries (29, time: 0.0083s, 10.7%)

  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.000640
    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.000116
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000091
    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.000093
    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: 18988
    Run Time: 0.000235
    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: 38
    Run Time: 0.000209
    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 >= 20 AND post.position < 40) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 18988
    Run Time: 0.000844
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 21Using 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: 18988
    Run Time: 0.000073
  9. SELECT post_id
    FROM xf_bookmark
    WHERE xf_bookmark.user_id = ?
    Params: 0
    Run Time: 0.000191
    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: 33862d5f9e5f51b087e6c1b9b46ce06d, , 1714328433
    Run Time: 0.000137
  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=18988&page=2, 1714324833,
    Run Time: 0.000062
  12. SELECT *
    FROM xf_related_content_cache
    WHERE content_id = ?
                    AND content_type = ?
    	AND expiry_date > ?
    Params: 18988, thread, 1714324833
    Run Time: 0.000168
    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.000608
    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_b61a374f39bfa316a703c', 'wfc__1_thread_view_t18988')
    Run Time: 0.000123
    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_c581b688b33dae17acf07')
    Run Time: 0.000080
    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_c581b688b33dae17acf07, a:1:{s:28:"thread_view_lock_rct18988_19";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1714324833;}}
    Run Time: 0.000085
  18. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_b61a374f39bfa316a703c, a:1:{s:23:"thread_view_rct18988_19";a:2:{s:4:"html";s:0:"";s:4:"time";i:1714324833;}}
    Run Time: 0.000065
  19. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_c581b688b33dae17acf07, a:1:{s:28:"thread_view_lock_rct18988_19";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714324833;}}
    Run Time: 0.000061
  20. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_2a9f072c68b3a5fde2a51')
    Run Time: 0.000082
    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_2a9f072c68b3a5fde2a51, a:1:{s:26:"thread_view_lock_t18988_18";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1714324833;}}
    Run Time: 0.000067
  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_93 +(_md_content_thread)
    Run Time: 0.000651
    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 (21842, 21639, 21084, 20837, 20836, 20817, 19865, 19437, 19263, 19136, 19074, 18988, 18961, 18871, 18566, 18533, 18414, 18293, 17885, 17820, 17781, 16605, 16415, 16229, 16209, 15582, 15409, 13881, 13857, 13668, 13445, 11452, 415)
    Run Time: 0.001390
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 33Using 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.000251
    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.000285
    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 (21842, 21639, 21084, 20837, 20836, 20817, 19865, 19437, 19263, 19136, 19074, 18988, 18961, 18871, 18566, 18533, 18414, 18293, 17885, 17820, 17781, 16605, 16415, 16229, 16209, 15582, 15409, 13881, 13857, 13668, 13445, 11452, 415))
    ORDER BY thread.post_date DESC
     LIMIT 20
    Run Time: 0.001264
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4 33Using 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_t18988, a:1:{s:21:"thread_view_t18988_18";a:2:{s:4:"html";s:13955:"<div class="avatarList"> <ul> <li class="thread-21842 thread-node-5"> <a href="index.php?members/frolov.13131/" class="avatar Av13131s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Frolov" /></a> <a title="Подача на ВНЖ: antecedents certificate" class="Tooltip" href="index.php?threads/podacha-na-vnzh-antecedents-certificate.21842/"> Подача на ВНЖ: antecedents... </a> <div class="userTitle"> <a href="index.php?members/frolov.13131/">Frolov</a> posted <span class="DateTime" title="5 авг 2022 в 21:02">5 авг 2022</span> </div> </li> <li class="thread-21639 thread-node-29"> <a href="index.php?members/aionismay.12815/" class="avatar Av12815s" data-avatarhtml="true"><img src="data/avatars/s/12/12815.jpg?1642412203" width="48" height="48" alt="AionisMay" /></a> <a title="Максимальный срок переезда по MVV визе" class="Tooltip" href="index.php?threads/maksimalnyj-srok-pereezda-po-mvv-vize.21639/"> Максимальный срок переезда по... </a> <div class="userTitle"> <a href="index.php?members/aionismay.12815/">AionisMay</a> posted <span class="DateTime" title="17 янв 2022 в 10:36">17 янв 2022</span> </div> </li> <li class="thread-21084 thread-node-38"> <a href="index.php?members/experimentor.5728/" class="avatar Av5728s" data-avatarhtml="true"><img src="data/avatars/s/5/5728.jpg?1432194722" width="48" height="48" alt="Experimentor" /></a> <a href="index.php?threads/mvv-i-sobstvennoe-bv.21084/"> MVV и собственное BV </a> <div class="userTitle"> <a href="index.php?members/experimentor.5728/">Experimentor</a> posted <span class="DateTime" title="24 сен 2020 в 13:43">24 сен 2020</span> </div> </li> <li class="thread-20837 thread-node-29"> <a href="index.php?members/andreyartishen.10876/" class="avatar Av10876s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="AndreyArtishen" /></a> <a title="Вопросы по Bijlage Antecedentenverklaring" class="Tooltip" href="index.php?threads/voprosy-po-bijlage-antecedentenverklaring.20837/"> Вопросы по Bijlage... </a> <div class="userTitle"> <a href="index.php?members/andreyartishen.10876/">AndreyArtishen</a> posted <span class="DateTime" title="4 апр 2020 в 22:00">4 апр 2020</span> </div> </li> <li class="thread-20836 thread-node-29"> <a href="index.php?members/ncux.463/" class="avatar Av463s" data-avatarhtml="true"><img src="data/avatars/s/0/463.jpg?1478376912" width="48" height="48" alt="ncux" /></a> <a title="FAQ: COVID-19 - визы, ВНЖ, путешествия" class="Tooltip" href="index.php?threads/faq-covid-19-vizy-vnzh-puteshestvija.20836/"> FAQ: COVID-19 - визы, ВНЖ,... </a> <div class="userTitle"> <a href="index.php?members/ncux.463/">ncux</a> posted <span class="DateTime" title="4 апр 2020 в 16:18">4 апр 2020</span> </div> </li> <li class="thread-20817 thread-node-4"> <a href="index.php?members/zalina.10839/" class="avatar Av10839s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Залина" /></a> <a title="Одобрение визы MVV от IND во время коронавируса" class="Tooltip" href="index.php?threads/odobrenie-vizy-mvv-ot-ind-vo-vremja-koronavirusa.20817/"> Одобрение визы MVV от IND во... </a> <div class="userTitle"> <a href="index.php?members/zalina.10839/">Залина</a> posted <span class="DateTime" title="24 мар 2020 в 16:51">24 мар 2020</span> </div> </li> <li class="thread-19865 thread-node-29"> <a href="index.php?members/belkacat.9066/" class="avatar Av9066s" data-avatarhtml="true"><img src="data/avatars/s/9/9066.jpg?1548675680" width="48" height="48" alt="Belkacat" /></a> <a title="Переезд по работе - процесс самостоятельной подачи для семьи" class="Tooltip" href="index.php?threads/pereezd-po-rabote-process-samostojatelnoj-podachi-dlja-semi.19865/"> Переезд по работе - процесс... </a> <div class="userTitle"> <a href="index.php?members/belkacat.9066/">Belkacat</a> posted <span class="DateTime" title="26 янв 2019 в 16:11">26 янв 2019</span> </div> </li> <li class="thread-19437 thread-node-29"> <a href="index.php?members/devoid.309/" class="avatar Av309s" data-avatarhtml="true"><img src="data/avatars/s/0/309.jpg?1425224051" width="48" height="48" alt="devoid" /></a> <a href="index.php?threads/mvv-shengen.19437/"> MVV+шенген </a> <div class="userTitle"> <a href="index.php?members/devoid.309/">devoid</a> posted <span class="DateTime" title="23 авг 2018 в 10:53">23 авг 2018</span> </div> </li> <li class="thread-19263 thread-node-31"> <a href="index.php?members/miamia.8238/" class="avatar Av8238s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="MiaMia" /></a> <a href="index.php?threads/dlitelnost-smeny-statusa-vnzh.19263/"> Длительность смены статуса ВНЖ </a> <div class="userTitle"> <a href="index.php?members/miamia.8238/">MiaMia</a> posted <span class="DateTime" title="24 июн 2018 в 09:41">24 июн 2018</span> </div> </li> <li class="thread-19136 thread-node-29"> <a href="index.php?members/treem.8065/" class="avatar Av8065s" data-avatarhtml="true"><img src="data/avatars/s/8/8065.jpg?1526412192" width="48" height="48" alt="Treem" /></a> <a href="index.php?threads/pereezd-iz-izrailja-v-amsterdam.19136/"> Переезд из Израиля в Амстердам. </a> <div class="userTitle"> <a href="index.php?members/treem.8065/">Treem</a> posted <span class="DateTime" title="12 май 2018 в 14:01">12 май 2018</span> </div> </li> <li class="thread-19074 thread-node-38"> <a href="index.php?members/california.7993/" class="avatar Av7993s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_s.png" width="48" height="48" alt="California" /></a> <a title="Семья процессится отдельно от заявителя" class="Tooltip" href="index.php?threads/semja-processitsja-otdelno-ot-zajavitelja.19074/"> Семья процессится отдельно от... </a> <div class="userTitle"> <a href="index.php?members/california.7993/">California</a> posted <span class="DateTime" title="20 апр 2018 в 19:04">20 апр 2018</span> </div> </li> <li class="thread-18988 thread-node-38"> <a href="index.php?members/kombinator.7755/" class="avatar Av7755s" data-avatarhtml="true"><img src="data/avatars/s/7/7755.jpg?1532679751" width="48" height="48" alt="Kombinator" /></a> <a href="index.php?threads/mvv-tranzit.18988/"> MVV транзит </a> <div class="userTitle"> <a href="index.php?members/kombinator.7755/">Kombinator</a> posted <span class="DateTime" title="16 мар 2018 в 11:55">16 мар 2018</span> </div> </li> <li class="thread-18961 thread-node-38"> <a href="index.php?members/kombinator.7755/" class="avatar Av7755s" data-avatarhtml="true"><img src="data/avatars/s/7/7755.jpg?1532679751" width="48" height="48" alt="Kombinator" /></a> <a title="В консульстве говорят что MVV готова, работодатель говорит что нет" class="Tooltip" href="index.php?threads/v-konsulstve-govorjat-chto-mvv-gotova-rabotodatel-govorit-chto-net.18961/"> В консульстве говорят что MVV... </a> <div class="userTitle"> <a href="index.php?members/kombinator.7755/">Kombinator</a> posted <span class="DateTime" title="4 мар 2018 в 14:19">4 мар 2018</span> </div> </li> <li class="thread-18871 thread-node-29"> <a href="index.php?members/kombinator.7755/" class="avatar Av7755s" data-avatarhtml="true"><img src="data/avatars/s/7/7755.jpg?1532679751" width="48" height="48" alt="Kombinator" /></a> <a href="index.php?threads/unmarried-partners.18871/"> Unmarried partners </a> <div class="userTitle"> <a href="index.php?members/kombinator.7755/">Kombinator</a> posted <span class="DateTime" title="5 фев 2018 в 18:46">5 фев 2018</span> </div> </li> <li class="thread-18566 thread-node-31"> <a href="index.php?members/chel.7489/" class="avatar Av7489s" data-avatarhtml="true"><img src="data/avatars/s/7/7489.jpg?1649404117" width="48" height="48" alt="chel" /></a> <a title="Job-Seeker Visa - это обман или нововведение ?" class="Tooltip" href="index.php?threads/job-seeker-visa-ehto-obman-ili-novovvedenie.18566/"> Job-Seeker Visa - это обман или... </a> <div class="userTitle"> <a href="index.php?members/chel.7489/">chel</a> posted <span class="DateTime" title="17 окт 2017 в 21:24">17 окт 2017</span> </div> </li> <li class="thread-18533 thread-node-38"> <a href="index.php?members/ncux.463/" class="avatar Av463s" data-avatarhtml="true"><img src="data/avatars/s/0/463.jpg?1478376912" width="48" height="48" alt="ncux" /></a> <a title="Решение о визе семье КМа - теперь за 2 недели" class="Tooltip" href="index.php?threads/reshenie-o-vize-seme-kma-teper-za-2-nedeli.18533/"> Решение о визе семье КМа -... </a> <div class="userTitle"> <a href="index.php?members/ncux.463/">ncux</a> posted <span class="DateTime" title="6 окт 2017 в 15:01">6 окт 2017</span> </div> </li> <li class="thread-18414 thread-node-29"> <a href="index.php?members/longbow.7393/" class="avatar Av7393s" data-avatarhtml="true"><img src="data/avatars/s/7/7393.jpg?1503518490" width="48" height="48" alt="Longbow" /></a> <a title="Можно ли ехать в Го без апостилированного свидетельства о рождении по mvv?" class="Tooltip" href="index.php?threads/mozhno-li-exat-v-go-bez-apostilirovannogo-svidetelstva-o-rozhdenii-po-mvv.18414/"> Можно ли ехать в Го без... </a> <div class="userTitle"> <a href="index.php?members/longbow.7393/">Longbow</a> posted <span class="DateTime" title="26 авг 2017 в 18:19">26 авг 2017</span> </div> </li> <li class="thread-18293 thread-node-29"> <a href="index.php?members/kolunka.7297/" class="avatar Av7297s" data-avatarhtml="true"><img src="styles/soft_responsive/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="kolunka" /></a> <a title="Оформление визы MVV для Unregistered Partner" class="Tooltip" href="index.php?threads/oformlenie-vizy-mvv-dlja-unregistered-partner.18293/"> Оформление визы MVV для... </a> <div class="userTitle"> <a href="index.php?members/kolunka.7297/">kolunka</a> posted <span class="DateTime" title="17 июл 2017 в 21:29">17 июл 2017</span> </div> </li> <li class="thread-17885 thread-node-29"> <a href="index.php?members/yury.6927/" class="avatar Av6927s" data-avatarhtml="true"><img src="https://secure.gravatar.com/avatar/e6d36a647fdb07062b6ba36a85122d35?s=48&amp;d=https%3A%2F%2Frassvet.com%2Fforum%2Fstyles%2Fsoft_responsive%2Fxenforo%2Favatars%2Favatar_male_s.png" width="48" height="48" alt="Yury" /></a> <a href="index.php?threads/perevezti-semju.17885/"> Перевезти семью </a> <div class="userTitle"> <a href="index.php?members/yury.6927/">Yury</a> posted <span class="DateTime" title="13 мар 2017 в 12:59">13 мар 2017</span> </div> </li> <li class="thread-17820 thread-node-29"> <a href="index.php?members/humanunique.6024/" class="avatar Av6024s" data-avatarhtml="true"><img src="data/avatars/s/6/6024.jpg?1446071969" width="48" height="48" alt="HumanUnique" /></a> <a title="Виза и регистрация для ребенка рожденного в России" class="Tooltip" href="index.php?threads/viza-i-registracija-dlja-rebenka-rozhdennogo-v-rossii.17820/"> Виза и регистрация для ребенка... </a> <div class="userTitle"> <a href="index.php?members/humanunique.6024/">HumanUnique</a> posted <span class="DateTime" title="23 фев 2017 в 23:32">23 фев 2017</span> </div> </li> </ul> </div>";s:4:"time";i:1714324833;}}
    Run Time: 0.000200
  28. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_2a9f072c68b3a5fde2a51, a:1:{s:26:"thread_view_lock_t18988_18";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714324833;}}
    Run Time: 0.000072
  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.000123
    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/XenForo/Helper/String.php
  104. library/XenForo/Helper/Discussion.php
  105. library/XenForo/Model/Post.php
  106. library/Snog/FirstPostEdit/Listener/Post.php
  107. library/ModEss/Model/Post.php
  108. library/DoublePost/Model/Post.php
  109. library/Dark/PostRating/Model/Post.php
  110. library/Snog/FirstPostEdit/Model/Post.php
  111. library/ModEss/Model/ModEss.php
  112. library/XenForo/Model/Attachment.php
  113. library/XenForo/Model/Node.php
  114. library/Tapatalk/Model/Node.php
  115. library/ModEss/Model/Node.php
  116. library/XenForo/Route/Prefix/Categories.php
  117. library/XenForo/Route/Prefix/Forums.php
  118. library/XenForo/ControllerResponse/View.php
  119. library/XenForo/ControllerResponse/Abstract.php
  120. library/XenForo/Helper/Cookie.php
  121. library/NodesAsTabs/API.php
  122. library/NodesAsTabs/Model/Options.php
  123. library/Tapatalk/Listener/ControllerPostDispatch.php
  124. library/XenForo/ViewRenderer/HtmlPublic.php
  125. library/XenForo/ViewRenderer/Abstract.php
  126. library/XenForo/Template/Public.php
  127. library/XenForo/Template/Abstract.php
  128. library/WidgetFramework/Core.php
  129. library/XenForo/Model/Moderator.php
  130. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/Moderator.php
  131. library/ModEss/Model/Moderator.php
  132. library/WidgetFramework/Model/Widget.php
  133. library/WidgetFramework/Helper/Sort.php
  134. library/WidgetFramework/WidgetRenderer.php
  135. library/XenForo/ViewPublic/Thread/View.php
  136. library/XenForo/ViewPublic/Base.php
  137. library/XenForo/View.php
  138. library/Tinhte/XenTag/XenForo/ViewPublic/Thread/View.php
  139. library/WidgetFramework/XenForo/View1.php
  140. library/RelatedContents/ViewPublic/ThreadView.php
  141. library/XenForo/Model/Tag.php
  142. library/Tinhte/XenTag/XenForo/Model/Tag.php
  143. library/RelatedContents/Model/Tag.php
  144. library/XenForo/BbCode/Parser.php
  145. library/XenForo/BbCode/Formatter/Base.php
  146. library/bdTagMe/XenForo/BbCode/Formatter/Base.php
  147. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  148. library/Tinhte/XenTag/XenForo/BbCode/Formatter/Base.php
  149. library/DoublePost/BbCode/Formatter/Base.php
  150. library/XenForo/ViewPublic/Helper/Message.php
  151. library/XenForo/BbCode/TextWrapper.php
  152. library/Tinhte/XenTag/ContentWrapper/Post.php
  153. library/Tinhte/XenTag/ContentWrapper/Abstract.php
  154. library/Tinhte/XenTag/Option.php
  155. library/RelatedContents/WidgetRenderer/Thread.php
  156. library/WidgetFramework/Model/Cache.php
  157. library/Tinhte/XenTag/WidgetRenderer/RelatedThreads.php
  158. library/XenForo/Route/Prefix/Members.php
  159. library/bdTagMe/XenForo/Route/Prefix/Members.php
  160. library/memberMap/Listener/Navigation.php
  161. library/memberMap/Model/ViewMap.php
  162. library/EWRatendo/Listener/NavTabs.php
  163. library/EWRatendo/Model/Perms.php
  164. library/NodesAsTabs/NavTabs.php
  165. library/EWRutiles/Sitemap/Listener/Params.php
  166. library/WidgetFramework/Template/Extended.php
  167. library/XenForo/Route/Prefix/Tags.php
  168. library/Tapatalk/EventListener/Hook.php
  169. library/EWRatendo/Listener/Template.php
  170. library/Tapatalk/Listener/TemplatePostRender.php
  171. library/XenForo/Route/Prefix/Posts.php
  172. library/XenForo/Model/Avatar.php
  173. library/Tinhte/XenTag/Helper.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