Page Time: 0.1706s

Memory: 10.5064 MB (Peak: 11.6731 MB)

Queries (49, time: 0.0263s, 15.4%)

  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.000611
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000073
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: brmsModernStatisticCache
    Run Time: 0.000070
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  4. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: modLogCounts
    Run Time: 0.000051
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  5. SELECT user.*, permission_combination.cache_value AS global_permission_cache
    FROM xf_moderator AS moderator
    INNER JOIN xf_user AS user ON (user.user_id = moderator.user_id)
    LEFT JOIN xf_permission_combination AS permission_combination ON (permission_combination.permission_combination_id = user.permission_combination_id)
    Run Time: 0.000181
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEmoderatorindexPRIMARYPRIMARY4 8Using index
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.moderator.user_id1 
    SIMPLEpermission_combinationeq_refPRIMARYPRIMARY4prav110_pravorg.user.permission_combination_id1 
  6. DELETE FROM `xf_data_registry` WHERE (data_key = 'modLogCounts')
    Run Time: 0.000105
  7. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000115
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  8. 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
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 1883
    Run Time: 0.000573
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  9. 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: 131
    Run Time: 0.000445
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  10. SELECT post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date, session.view_date
    FROM xf_post AS post
    
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		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_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_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 OUTER JOIN xf_session_activity AS session ON post.user_id = session.user_id
    WHERE post.thread_id = ?
    	 AND (post.position >= 580 AND post.position < 600) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 1883
    Run Time: 0.002085
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using index condition; Using where; Using filesort
    SIMPLEthreadeq_refPRIMARYPRIMARY4prav110_pravorg.post.thread_id1 
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,prav110_pravorg.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4prav110_pravorg.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4prav110_pravorg.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,prav110_pravorg.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22prav110_pravorg.post.user_id,func1Using where
    SIMPLEsessionrefPRIMARYPRIMARY4prav110_pravorg.post.user_id11 
  11. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 1883
    Run Time: 0.000064
  12. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		node.title AS node_title, node.node_name
    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)
    WHERE thread.thread_id IN ('8742', '8709', '8405', '8607', '8694')
    Run Time: 0.000614
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 5Using where
    SIMPLEusereq_refPRIMARYPRIMARY4prav110_pravorg.thread.user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4prav110_pravorg.thread.node_id1 
  13. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 14
    Run Time: 0.000052
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  14. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 19
    Run Time: 0.000044
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  15. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 18
    Run Time: 0.000039
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  16. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 97981915d22894fa95d0815ed53e38e4, , 1713923621
    Run Time: 0.000154
  17. 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=1883&page=30, 1713920021,
    Run Time: 0.000599
  18. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'BRMS_ModernStatistic', 'BRMS_modern_statistic_header', 'anonymous_posting_checkbox_lite', 'anonymous_posting_reveal', 'doublepost_bb_code_tag', 'modess_thread_log', 'qriu_page_container_js_body', 'similar_threads', 'thread_view', 'xfa_blog_navigation_links', 'waindigo_navigation_visitor_tab_joinusergroup', 'xfa_blog_navigation_tab_link', 'modess_moderator_bar_mod_log_counts', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000296
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 21Using where
  19. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRMS_thread_view_tools_links')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000067
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  20. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('message_user_online')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000068
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  21. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('offline')
    Params: 1
    Run Time: 0.000040
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162022, a:3:{i:0;s:344:"Представьте ситуацию. Вы - директор фирмы. Уволились. Вы бывший директор. Можете Вы управлять фирмой??? Апостольская преемственность дается священству для продолжения управления Церковью.";i:1;a:4:{s:3:"tag";s:10:"doublepost";s:6:"option";s:21:"1489568848,1489568110";s:8:"original";a:2:{i:0;s:34:"[DOUBLEPOST=1489568848,1489568110]";i:1;s:13:"[/DOUBLEPOST]";}s:8:"children";a:0:{}}i:2;s:423:"Хотелось бы добавить такой фокус про директора фирмы. Если Вы вернетесь на должность, то снова сможете управлять. Вот так и католики могут через покаяние в латинской ереси сразу становиться православными священниками в своем сане.";}, 1697463804, 1713920021
    Run Time: 0.001104
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162023, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:45:"Сан Саныч, post: 162022, member: 7596";s:8:"original";a:2:{i:0;s:55:"[QUOTE="Сан Саныч, post: 162022, member: 7596"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:344:"Представьте ситуацию. Вы - директор фирмы. Уволились. Вы бывший директор. Можете Вы управлять фирмой??? Апостольская преемственность дается священству для продолжения управления Церковью.";}}i:1;s:344:" Хорошо, а как, например с Крещением? Ведь крестить может крещеный человек или не может? Почему тогда в КП оно недействительно? Конкретно священник же не отлучен от церкви, не анафемствован.";}, 1697463804, 1713920021
    Run Time: 0.000992
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162024, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"-Евгений-, post: 162021, member: 9227";s:8:"original";a:2:{i:0;s:54:"[QUOTE="-Евгений-, post: 162021, member: 9227"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:165:"нет, не являются, но не являются ли они все равно носителями Апостольской преемственности?";}}i:1;s:494:" Преемственность можно и потерять... Иуда Искариот тоже имел благодарить и вообще, был апостолом и учеником Господа, однако своим делами отпал от апостольства и остался ни с чем. Итог этого всего известен... Это пример того, что имея от Бога многое, можно все все потерять...";}, 1697463804, 1713920021
    Run Time: 0.001060
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162025, a:1:{i:0;s:318:"Крестить может мирянин в безисходном или сложном положении, который принадлежит Церкви. Снова вопрос, люди, переодетые в священников из КП - принадлежат канонической Церкви?";}, 1697463804, 1713920021
    Run Time: 0.001033
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162026, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"-Евгений-, post: 162023, member: 9227";s:8:"original";a:2:{i:0;s:54:"[QUOTE="-Евгений-, post: 162023, member: 9227"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:343:"Хорошо, а как, например с Крещением? Ведь крестить может крещеный человек или не может? Почему тогда в КП оно недействительно? Конкретно священник же не отлучен от церкви, не анафемствован.";}}i:1;s:609:" По моему, Вы не совсем понимаете, что КП не является признанной церковью. Если мы с Вами собираемся начнем крестить сами собой, то будет ли оно считаться действительным? А есть ли у нас та самая Благодать Святого Духа, которая должна даваться человеку при истинном Крещении??? Ответьте сами себе на этот вопрос и тогда все станет ясно...";}, 1697463804, 1713920021
    Run Time: 0.001010
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162027, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"Владимир, post: 162026, member: 3956";s:8:"original";a:2:{i:0;s:54:"[QUOTE="Владимир, post: 162026, member: 3956"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:450:"По моему, Вы не совсем понимаете, что КП не является признанной церковью. Если мы с Вами собираемся и решим провести таинство крещения сами собой, то будет ли оно считаться действительным? Ответьте сами себе на этот вопрос и тогда все станет ясно...";}}i:1;s:182:" я почему и спрашиваю, что бы разобраться в этом. Ответить сам себе не могу, потому и спрашиваю здесь.";}, 1697463804, 1713920021
    Run Time: 0.001008
  28. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162028, a:1:{i:0;s:487:"Хотел бы отметить важную и часто забываемую вещь. Только Церковь решает данной ей Богом властью, кого и как принимать и крестить. И если сегодня она говорит, что КП принимать через крещение, то так и будет. Если через год, например, скажет через покаяние, то так и будет.";}, 1697463804, 1713920021
    Run Time: 0.001001
  29. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162029, a:1:{i:0;s:468:"получается, что исторически, когда Московский патриархат не был признан около 140 лет, то тоже не было преемственности и таинства были недействительны? Был же такой период как и в некоторых других патриархатах ныне канонических, например, тот же Болгарский.";}, 1697463804, 1713920021
    Run Time: 0.000985
  30. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162030, a:1:{i:0;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"yQkl-wR7rbU";}}}, 1697463804, 1713920021
    Run Time: 0.000980
  31. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162031, a:1:{i:0;s:405:"Для того, что бы понять, желательно прочитать что такое Таинство Церкви. Какие Таинства бывают и что происходит во время Таинства Крещения. Без этих базовых знаний, тяжело понять суть и почему не принимается "Крещение" в КП";}, 1697463804, 1713920021
    Run Time: 0.000966
  32. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162032, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"Владимир, post: 162031, member: 3956";s:8:"original";a:2:{i:0;s:54:"[QUOTE="Владимир, post: 162031, member: 3956"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:405:"Для того, что бы понять, желательно прочитать что такое Таинство Церкви. Какие Таинства бывают и что происходит во время Таинства Крещения. Без этих базовых знаний, тяжело понять суть и почему не принимается "Крещение" в КП";}}i:1;s:84:" спасибо за рекомендацию, почитаю обязательно";}, 1697463804, 1713920021
    Run Time: 0.000920
  33. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162033, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"-Евгений-, post: 162029, member: 9227";s:8:"original";a:2:{i:0;s:54:"[quote="-Евгений-, post: 162029, member: 9227"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:154:"получается, что исторически, когда Московский патриархат не был признан около 140 лет";}}i:1;s:295:" Это Вы о том времени, когда весь православный мир ушел в унию с еретиками и отрекся от Христа? И когда МП остался практически единственным православным на земле?";}, 1697463804, 1713920021
    Run Time: 0.000944
  34. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162034, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"-Евгений-, post: 162029, member: 9227";s:8:"original";a:2:{i:0;s:54:"[QUOTE="-Евгений-, post: 162029, member: 9227"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:275:"получается, что исторически, когда Московский патриархат не был признан около 140 лет, то тоже не было преемственности и таинства были недействительны?";}}i:1;s:174:" Вот отсюда, если можно поподробней. Что происходило 140 лет назад??? Давайте вместе разбираться...";}, 1697463804, 1713920021
    Run Time: 0.000836
  35. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162035, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"Владимир, post: 162034, member: 3956";s:8:"original";a:2:{i:0;s:54:"[QUOTE="Владимир, post: 162034, member: 3956"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:119:"Вот отсюда, если можно поподробней. Что происходило 140 лет назад???";}}i:1;s:200:" это когда в 1448 г Московская митрополия отделилась от Вселенского патриархата и была не признана около 140 лет?";}, 1697463804, 1713920021
    Run Time: 0.000862
  36. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162036, a:4:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"-Евгений-, post: 162035, member: 9227";s:8:"original";a:2:{i:0;s:54:"[quote="-Евгений-, post: 162035, member: 9227"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:142:"это когда в 1448 г Московская митрополия отделилась от Вселенского патриархата";}}i:1;s:89:" Она отделилась не от Церкви, а от ушедших в унию.";i:2;a:4:{s:3:"tag";s:10:"doublepost";s:6:"option";s:21:"1489571518,1489571311";s:8:"original";a:2:{i:0;s:34:"[DOUBLEPOST=1489571518,1489571311]";i:1;s:13:"[/DOUBLEPOST]";}s:8:"children";a:0:{}}i:3;s:350:"Для примера. Высшие чины какого-либо патриархата решили присоединиться к католикам. Один епископ не захотел и стоит на Православии. Поэтому он прерывает связь со своим патриархом предателем.";}, 1697463804, 1713920021
    Run Time: 0.000964
  37. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162037, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:45:"Сан Саныч, post: 162036, member: 7596";s:8:"original";a:2:{i:0;s:55:"[QUOTE="Сан Саныч, post: 162036, member: 7596"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:87:"Она отделилась не от Церкви, а от ушедших в унию.";i:1;a:4:{s:3:"tag";s:10:"doublepost";s:6:"option";s:21:"1489571518,1489571311";s:8:"original";a:2:{i:0;s:34:"[DOUBLEPOST=1489571518,1489571311]";i:1;s:13:"[/DOUBLEPOST]";}s:8:"children";a:0:{}}i:2;s:350:"Для примера. Высшие чины какого-либо патриархата решили присоединиться к католикам. Один епископ не захотел и стоит на Православии. Поэтому он прерывает связь со своим патриархом предателем.";}}i:1;s:372:" Это Константинопольский решил в унию уйти? Я так понимаю, что Московская митрополия отделилась от Константинополя, т.к. Киевская кафедра была в составе Константинопольского патриархата? Могу ошибаться.";}, 1697463804, 1713920021
    Run Time: 0.000865
  38. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162038, a:3:{i:0;s:347:"Ну, надо сказать, справедливости ради, чем было вызвано подобное решение епископата Русской Митрополии... А именно тем, что была приведена була от папы Римского с требованием принятия унии.. ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:178:"https://ru.m.wikipedia.org/wiki/%D0%90%D0%B2%D1%82%D0%BE%D0%BA%D0%B5%D1%84%D0%B0%D0%BB%D0%B8%D1%8F_%D0%A0%D1%83%D1%81%D1%81%D0%BA%D0%BE%D0%B9_%D1%86%D0%B5%D1%80%D0%BA%D0%B2%D0%B8";s:8:"original";a:2:{i:0;s:186:"[url="https://ru.m.wikipedia.org/wiki/%D0%90%D0%B2%D1%82%D0%BE%D0%BA%D0%B5%D1%84%D0%B0%D0%BB%D0%B8%D1%8F_%D0%A0%D1%83%D1%81%D1%81%D0%BA%D0%BE%D0%B9_%D1%86%D0%B5%D1%80%D0%BA%D0%B2%D0%B8"]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:73:"Автокефалия Русской церкви — Википедия";}}i:2;s:509:" История показала, что от унии отказались в последствии и сами греки. И после того, отношения восстановились Причина унии было банальна. Греки думали, что Рим защитит их от нашествия кочевников. Что, собственно и обещалось им. По этому и решили подписать унию с Папской Церковью...";}, 1697463804, 1713920021
    Run Time: 0.000864
  39. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162039, a:3:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:44:"-Евгений-, post: 162037, member: 9227";s:8:"original";a:2:{i:0;s:54:"[quote="-Евгений-, post: 162037, member: 9227"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:78:"Это Константинопольский решил в унию уйти?";}}i:1;s:204:" Он лично подписал документы, но не дожил до окончательного результата. Только несколько человек не подписали. ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:182:"https://ru.wikipedia.org/wiki/%D0%A4%D0%B5%D1%80%D1%80%D0%B0%D1%80%D0%BE-%D0%A4%D0%BB%D0%BE%D1%80%D0%B5%D0%BD%D1%82%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9_%D1%81%D0%BE%D0%B1%D0%BE%D1%80";s:8:"original";a:2:{i:0;s:190:"[url="https://ru.wikipedia.org/wiki/%D0%A4%D0%B5%D1%80%D1%80%D0%B0%D1%80%D0%BE-%D0%A4%D0%BB%D0%BE%D1%80%D0%B5%D0%BD%D1%82%D0%B8%D0%B9%D1%81%D0%BA%D0%B8%D0%B9_%D1%81%D0%BE%D0%B1%D0%BE%D1%80"]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:75:"Ферраро-Флорентийский собор — Википедия";}}}, 1697463804, 1713920021
    Run Time: 0.000825
  40. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162040, a:4:{i:0;s:290:"Если же рассматривать раскол КП, то подобных серьезных и объективных причин выходить из УПЦ не было... Просто, кто то решил стать отдельно независимой Церковью";i:1;a:4:{s:3:"tag";s:10:"doublepost";s:6:"option";s:21:"1489573166,1489572330";s:8:"original";a:2:{i:0;s:34:"[DOUBLEPOST=1489573166,1489572330]";i:1;s:13:"[/DOUBLEPOST]";}s:8:"children";a:0:{}}i:2;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"bU-VcPYJgIM";}}i:3;s:21:" См. с 19 мин.";}, 1697463804, 1713920021
    Run Time: 0.000834
  41. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 162043, a:2:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:106:"http://www.dsnews.ua/politics/vselenskiy-patriarh-poobeshchal-ukraine-pomoshch-v-obedinenii-15032017151600";s:8:"original";a:2:{i:0;s:114:"[url="http://www.dsnews.ua/politics/vselenskiy-patriarh-poobeshchal-ukraine-pomoshch-v-obedinenii-15032017151600"]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:163:"Вселенский патриарх пообещал Украине помощь в объединении церкви. Новости политики | Dsnews";}}i:1;s:31:" Хорошие новости";}, 1697463804, 1713920021
    Run Time: 0.000815
  42. SELECT * FROM xf_thread
    WHERE
    	node_id = ? AND
    	last_post_date < ? AND
    	discussion_state = 'visible' AND
    	sticky = ?
    ORDER BY
    	last_post_date DESC
    Params: 131, 1519810406, 0
    Run Time: 0.000429
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangenode_id_last_post_date,node_id_sticky_state_last_post,last_post_datenode_id_last_post_date8 7Using where
  43. SELECT * FROM xf_thread
    WHERE
    	node_id = ? AND
    	last_post_date > ? AND
    	discussion_state = 'visible' AND
    	sticky = ?
    ORDER BY
    	last_post_date ASC
    Params: 131, 1519810406, 0
    Run Time: 0.000284
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangenode_id_last_post_date,node_id_sticky_state_last_post,last_post_datenode_id_last_post_date8 3Using index condition; Using where
  44. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('xfa_previous_next_thread_links')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000050
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  45. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bbms_twitter_css')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000057
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  46. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('kin_postthread_main')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000052
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  47. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('social_connect_status_editor')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000057
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  48. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('xxtW_js')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000061
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  49. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bbms_twitter_XFormer')
    	AND style_id = ?
    	AND language_id = ?
    Params: 5, 1
    Run Time: 0.000048
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (180, XenForo Classes: 65)

  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/Brivium/BriviumHelper/EventListeners.php
  33. library/Brivium/BriviumHelper/1010071/EventListeners.php
  34. library/Asp/OnlineStatus/Plugin/Plugin.php
  35. library/UserEss/Listener/Proxy.php
  36. library/ExternalExtended/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/AnonymousPosting/Listener.php
  39. library/XfAddOns/Blogs/Listener.php
  40. library/XfAddOns/Blogs/Install/Version.php
  41. library/DoublePost/Listener/LoadClassModel.php
  42. library/ModEss/Listener/Cog.php
  43. library/TiledForumsModule/Listener.php
  44. library/SocialConnect/Listener.php
  45. library/Brivium/ModernStatistic/EventListeners/Listener.php
  46. library/Brivium/ModernStatistic/ModernStatistic.php
  47. library/Iversia/Identicon/Listener.php
  48. library/ModEss/Model/ModEss.php
  49. library/XenForo/Permission.php
  50. library/XenForo/Helper/Php.php
  51. library/XenForo/Router.php
  52. library/XenForo/Route/Filter.php
  53. library/XenForo/Route/Interface.php
  54. library/XenForo/Route/ResponseSuffix.php
  55. library/XenForo/Route/Prefix.php
  56. library/XenForo/Route/Prefix/Threads.php
  57. library/XI/HelpManager/CodeEvent/Listener.php
  58. library/XenForo/RouteMatch.php
  59. library/XenForo/ControllerPublic/Thread.php
  60. library/XenForo/ControllerPublic/Abstract.php
  61. library/XenForo/Controller.php
  62. library/Sedo/MobileStyleSelector/Listener/ControllerPublic.php
  63. library/ShowSimilarThreads/Listener.php
  64. library/XfAddOns/PreviousNextThread/Listener.php
  65. library/DoublePost/Listener/LoadClassController.php
  66. library/Brivium/ModernStatistic/ControllerPublic/Thread.php
  67. library/UserEss/ControllerPublic/Thread.php
  68. library/BestAnswer/ControllerPublic/Thread.php
  69. library/ShowSimilarThreads/ControllerPublic/Thread.php
  70. library/XfAddOns/PreviousNextThread/ControllerPublic/Thread.php
  71. library/DoublePost/ControllerPublic/Thread.php
  72. library/ModEss/ControllerPublic/Thread.php
  73. library/AnonymousPosting/ControllerPublic/Thread.php
  74. library/XenForo/Input.php
  75. library/XenForo/Session.php
  76. library/XenForo/Helper/Ip.php
  77. library/XenForo/Visitor.php
  78. library/XenForo/Model/User.php
  79. library/Waindigo/JoinUserGroup/Listener/LoadClass.php
  80. library/Waindigo/Listener/LoadClass.php
  81. library/Waindigo/Listener/LoadClass/20131003.php
  82. library/Waindigo/JoinUserGroup/Extend/XenForo/Model/User.php
  83. library/Brivium/ModernStatistic/Model/User.php
  84. library/BestAnswer/Model/User.php
  85. library/XfAddOns/Blogs/Override/Model/User.php
  86. library/XenForo/Phrase.php
  87. library/XenForo/Locale.php
  88. library/Sedo/MobileStyleSelector/Listener/Visitor.php
  89. library/Sedo/MobileStyleSelector/Listener/ControllerPreDispatch.php
  90. library/Waindigo/JoinUserGroup/Listener/ControllerPreDispatch.php
  91. library/Waindigo/Listener/ControllerPreDispatch.php
  92. library/Waindigo/Listener/ControllerPreDispatch/20131003.php
  93. library/Waindigo/Listener/Template/20140101.php
  94. library/Waindigo/Listener/TemplateHook/20130522.php
  95. library/Waindigo/Listener/TemplatePostRender/20130522.php
  96. library/Waindigo/Listener/TemplateCreate/20130522.php
  97. library/Waindigo/Listener/InitDependencies.php
  98. library/Waindigo/Listener/InitDependencies/20140101.php
  99. library/AnonymousPosting/Option.php
  100. library/XenForo/ControllerHelper/ForumThreadPost.php
  101. library/XenForo/ControllerHelper/Abstract.php
  102. library/XenForo/Model/Thread.php
  103. library/Brivium/ModernStatistic/Model/Thread.php
  104. library/UserEss/Model/Thread.php
  105. library/BestAnswer/Model/Thread.php
  106. library/ModEss/Model/Thread.php
  107. library/BestAnswer/Model/BestAnswer.php
  108. library/XenForo/Model/Forum.php
  109. library/Brivium/ModernStatistic/Model/Forum.php
  110. library/UserEss/Model/Forum.php
  111. library/AnonymousPosting/Model/Forum.php
  112. library/XenForo/Helper/String.php
  113. library/XenForo/Helper/Discussion.php
  114. library/XenForo/Model/Post.php
  115. library/Asp/OnlineStatus/Model/AspPost.php
  116. library/UserEss/Model/Post.php
  117. library/BestAnswer/Model/Post.php
  118. library/AnonymousPosting/Model/Post.php
  119. library/XfAddOns/Blogs/Override/Model/Post.php
  120. library/DoublePost/Model/Post.php
  121. library/ModEss/Model/Post.php
  122. library/XenForo/Model/Attachment.php
  123. library/XenForo/Model/Node.php
  124. library/Brivium/ModernStatistic/Model/Node.php
  125. library/ModEss/Model/Node.php
  126. library/XenForo/Route/Prefix/Categories.php
  127. library/XenForo/Route/Prefix/Forums.php
  128. library/XenForo/ControllerResponse/View.php
  129. library/XenForo/ControllerResponse/Abstract.php
  130. library/ShowSimilarThreads/Model/SimilarThreads.php
  131. library/XenForo/Model/PermissionCache.php
  132. library/XenForo/Helper/Cookie.php
  133. library/XenForo/ViewRenderer/HtmlPublic.php
  134. library/XenForo/ViewRenderer/Abstract.php
  135. library/XenForo/Template/Public.php
  136. library/XenForo/Template/Abstract.php
  137. library/XenForo/ViewPublic/Thread/View.php
  138. library/XenForo/ViewPublic/Base.php
  139. library/XenForo/View.php
  140. library/QuickReplyInsertUsername/Listener/LoadClass.php
  141. library/XenForo/BbCode/Parser.php
  142. library/XenForo/BbCode/Formatter/Base.php
  143. library/DoublePost/Listener/LoadClassbbCode.php
  144. library/DoublePost/BbCode/Formatter/Base.php
  145. library/XenForo/ViewPublic/Helper/Message.php
  146. library/XenForo/BbCode/TextWrapper.php
  147. library/Waindigo/JoinUserGroup/Listener/TemplateCreate.php
  148. library/Sedo/QuoteME/Listener/PreloadTemplates.php
  149. library/UserEss/Listener/Hook.php
  150. library/XfAddOns/Blogs/Template/Hook.php
  151. library/WhoHasVisited/Listener.php
  152. library/DoublePost/Listener/Hook.php
  153. library/Sedo/GoToTop/Listener/Templates.php
  154. library/QuickReplyInsertUsername/Listener/Template.php
  155. library/XenForo/Route/Prefix/Members.php
  156. library/OXY/News/Listener.php
  157. library/XfAddOns/Blogs/Template/Navigation.php
  158. library/XfAddOns/Blogs/Model/MultiBlog.php
  159. library/XenForo/Model/Avatar.php
  160. library/robokassa/Listener.php
  161. library/Waindigo/JoinUserGroup/Listener/TemplateHook.php
  162. library/Brivium/ModernStatistic/Model/ModernStatistic.php
  163. library/XfAddOns/PreviousNextThread/Template/Hook.php
  164. library/CrazYimProfileLinks/Listener.php
  165. library/KineticMypostMythread/Listener.php
  166. library/MediaSites/listeners/twitter.php
  167. library/microstats/Listener.php
  168. library/Sedo/QuoteME/Listener/Templates.php
  169. library/robokassa/MoreCurrency/Listener.php
  170. library/XenForo/Route/Prefix/Posts.php
  171. library/XenForo/Model/Session.php
  172. library/AnonymousPosting/Model/Session.php
  173. library/XenForo/ViewPublic/Helper/User.php
  174. library/XenForo/Model/UserField.php
  175. library/s9e/MediaBBCodes.php
  176. library/XfAddOns/PreviousNextThread/Helper/Navigation.php
  177. library/XenForo/Helper/Criteria.php
  178. library/XenForo/Debug.php
  179. library/XenForo/ViewRenderer/Json.php
  180. library/TiledForumsModule/Icon.php