Page Time: 0.1496s

Memory: 10.8585 MB (Peak: 11.7894 MB)

Queries (37, time: 0.0464s, 31.0%)

  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.004469
    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.000577
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000479
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. 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: 393
    Run Time: 0.000557
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  5. 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: 8
    Run Time: 0.000720
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  6. SELECT EWRporta2_articles.*, xf_thread.*, xf_post.*, xf_user.*, EWRporta2_authors.*
    FROM EWRporta2_articles
    	INNER JOIN xf_thread ON (xf_thread.thread_id = EWRporta2_articles.thread_id)
    	INNER JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
    	LEFT JOIN xf_user ON (xf_user.user_id = xf_thread.user_id)
    	LEFT JOIN EWRporta2_authors ON (EWRporta2_authors.user_id = xf_thread.user_id)
    WHERE EWRporta2_articles.thread_id = ?
    Params: 393
    Run Time: 0.000987
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       no matching row in const table
  7. SELECT EWRporta2_articles.*, EWRporta2_authors.*, xf_thread.*, xf_post.*, xf_user.*
    FROM xf_thread
    	INNER JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
    	LEFT JOIN xf_user ON (xf_user.user_id = xf_thread.user_id)
    	LEFT JOIN EWRporta2_authors ON (EWRporta2_authors.user_id = xf_thread.user_id)
    	LEFT JOIN EWRporta2_articles ON (EWRporta2_articles.thread_id = xf_thread.thread_id)
    WHERE xf_thread.thread_id = ?
    Params: 393
    Run Time: 0.000911
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadconstPRIMARYPRIMARY4const1 
    SIMPLExf_postconstPRIMARYPRIMARY4const1 
    SIMPLExf_userconstPRIMARYPRIMARY4const1 
    SIMPLEEWRporta2_authorsconstPRIMARYPRIMARY4const0unique row not found
    SIMPLEEWRporta2_articlesconstPRIMARYPRIMARY4const0unique row not found
  8. SELECT post.*
    	,
    		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
    FROM xf_post AS post
    
    		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))
    WHERE post.thread_id = ?
    	 AND (post.position >= 100 AND post.position < 120) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 393
    Run Time: 0.002630
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 23Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,xen.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xen.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4xen.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4xen.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,xen.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22xen.post.user_id,func1Using where
  9. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 393
    Run Time: 0.000348
  10. SELECT EWRporta2_articles.*, xf_thread.*, xf_post.*, xf_user.*, EWRporta2_authors.*
    FROM EWRporta2_articles
    	INNER JOIN xf_thread ON (xf_thread.thread_id = EWRporta2_articles.thread_id)
    	INNER JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
    	LEFT JOIN xf_user ON (xf_user.user_id = xf_thread.user_id)
    	LEFT JOIN EWRporta2_authors ON (EWRporta2_authors.user_id = xf_thread.user_id)
    WHERE EWRporta2_articles.thread_id = ?
    Params: 393
    Run Time: 0.000919
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       no matching row in const table
  11. SELECT EWRporta2_articles.*, EWRporta2_authors.*, xf_thread.*, xf_post.*, xf_user.*
    FROM xf_thread
    	INNER JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
    	LEFT JOIN xf_user ON (xf_user.user_id = xf_thread.user_id)
    	LEFT JOIN EWRporta2_authors ON (EWRporta2_authors.user_id = xf_thread.user_id)
    	LEFT JOIN EWRporta2_articles ON (EWRporta2_articles.thread_id = xf_thread.thread_id)
    WHERE xf_thread.thread_id = ?
    Params: 393
    Run Time: 0.000836
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadconstPRIMARYPRIMARY4const1 
    SIMPLExf_postconstPRIMARYPRIMARY4const1 
    SIMPLExf_userconstPRIMARYPRIMARY4const1 
    SIMPLEEWRporta2_authorsconstPRIMARYPRIMARY4const0unique row not found
    SIMPLEEWRporta2_articlesconstPRIMARYPRIMARY4const0unique row not found
  12. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: a564fffb8554cd3964d0b36e301e717f, , 1714441845
    Run Time: 0.000477
  13. 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=393&page=6, 1714438245,
    Run Time: 0.000226
  14. SELECT *
    FROM kingk_bbcm
    ORDER BY tag
    Run Time: 0.000474
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEkingk_bbcmsystem    1 
  15. SELECT page_name FROM EWRcarta_pages WHERE page_slug = 'index'
    Run Time: 0.000352
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEEWRcarta_pagesconstpage_slugpage_slug302const1 
  16. SELECT options.*, node.*,
    	permission.cache_value AS node_permission_cache
    FROM nat_options AS options
    INNER JOIN xf_node AS node
    	ON (node.node_id = options.node_id)
    LEFT JOIN xf_permission_cache_content AS permission
    	ON (permission.permission_combination_id = ?
    	AND permission.content_type = 'node'
    	AND permission.content_id = options.node_id)
    WHERE nat_display_tab = 1
    ORDER BY options.nat_display_order
    ASC
    Params: 1
    Run Time: 0.000801
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEoptionsALLnode_id   24Using where; Using filesort
    SIMPLEnodeeq_refPRIMARYPRIMARY4xen.options.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,xen.options.node_id1Using where
  17. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('BRSTS_support_tickets', 'media')
    Params: 2
    Run Time: 0.000352
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 2Using where
  18. 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, 24124, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:19:"Selena, post: 12005";s:8:"original";a:2:{i:0;s:29:"[quote="Selena, post: 12005"]";i:1;s:8:"[/quote]";}s:8:"children";a:9:{i:0;s:38:"Прежде всего, то, что ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:26:"не надо делать";}}i:2;s:2:": ";i:3;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:3:{i:0;s:204:" [*]Не надо создавать отдельную тему для каждого случая. [*]Не надо в возмущенном тоне требовать от нас что-либо. [*]";i:1;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#ff0000]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:125:"Не надо напрямую писать ник того, кто, по вашему мнению, вас погрифил.";}}i:2;s:1:" ";}}i:4;s:42:" А теперь о том, что вам ";i:5;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:29:"следует сделать";}}i:6;s:2:": ";i:7;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:7:{i:0;s:223:" [*]Посредством личных сообщений, либо сообщения в этой теме, оповестить администраторов и модераторов о факте грифинга. [*]";i:1;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#ff0000]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:115:"Обязательно сообщить сервер, на котором вы играете (Private или Free)";}}i:2;s:4:" [*]";i:3;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#ff0000]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:132:"Привести в доказательство своей позиции скриншоты погрифленного места.";}}i:4;s:4:" [*]";i:5;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#ff0000]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:332:"Оставить координаты вашей территории (можно посмотреть по F3, если сложно переписать, можете просто выложить скриншот с F3). В случае воровства из сундуков - точные координаты сундука.";}}i:6;s:282:" [*]Желательно указать примерное время, когда все это могло произойти. [*]Дополнительно указать любую информацию, которая может нам помочь в расследовании. ";}}i:8;s:1:" ";}}i:1;s:64:" Ну а ты получаешь бан за мультиакк.";}, 1708502088, 1714438245
    Run Time: 0.003987
  19. 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, 24125, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:21:"mityayfv, post: 24071";s:8:"original";a:2:{i:0;s:31:"[quote="mityayfv, post: 24071"]";i:1;s:8:"[/quote]";}s:8:"children";a:1:{i:0;s:369:"Я строил дом (я новичок) достроил толька вчера не успел заприватить. ночью меня погрифтили - украли верстак , 2 сундука , и разрушили дом !!!!!!!!!!! я не знаю как фоткать , но координаты вот x: 3306.7787587546 y: 74.200000047683?";}}i:1;s:128:" Не указано Free-1 или Free-2. Координаты указаны неверно (нет координат по z)";}, 1708502088, 1714438245
    Run Time: 0.001737
  20. 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, 24153, a:1:{i:0;s:388:"У меня украли всё из сундука Играю на free 1 просьба показать этих грабителей кординаты (-2291,75,-170) это могло произойти примерно 25-26 апреля пропало 4 алмаза, стак железа, 17 золота и 27 хлеба ну и помелочам. Помогите прошу.";}, 1708502088, 1714438245
    Run Time: 0.001128
  21. 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, 24156, a:1:{i:0;s:73:"JustDmitriy забанен за воровство из сундуков.";}, 1708502088, 1714438245
    Run Time: 0.001939
  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, 24157, a:1:{i:0;s:109:"оромное спасибо:D это лучший сервер с лучшей администрацией";}, 1708502088, 1714438245
    Run Time: 0.001683
  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, 24175, a:1:{i:0;s:187:"я тоже хочю оставить жалобу на игрока который забрал всё из дома моего друга он забрал всё что там было";}, 1708502088, 1714438245
    Run Time: 0.001109
  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, 24176, a:1:{i:0;s:159:"Прекрасное желание. Тебе отдельное разрешение требуется на то, чтобы составить заявку?";}, 1708502088, 1714438245
    Run Time: 0.001588
  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, 24189, a:1:{i:0;s:13:"вот ето";}, 1708502088, 1714438245
    Run Time: 0.000918
  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, 24190, a:1:{i:0;s:9:"да ну";}, 1708502088, 1714438245
    Run Time: 0.001771
  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, 24192, a:1:{i:0;s:25:"Где заявка-то?";}, 1708502088, 1714438245
    Run Time: 0.001580
  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, 24202, a:1:{i:0;s:140:"Определитесь, пожалуйста, кто строил дом: ты или Sned. Wavan, Kurova - бан. Приват снят.";}, 1708502088, 1714438245
    Run Time: 0.001075
  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, 24265, a:1:{i:0;s:431:"Уважаемый админ. Я постройл дом на серве Free 2 . Сегодня, в 22:11 на меня напал грифер. кординаты моего дома: -1385 316. Он приватил мой дом с моей тереторией и мной в доме. Имя грифера Black_w0lf_007 точно непомню. Прозьба: 1-Снять приват 2-Накозать грифера";}, 1708502088, 1714438245
    Run Time: 0.001548
  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, 24266, a:3:{i:0;s:121:"Я вынуждена предупредить каждого, кто оставляет заявку, что пункт ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:125:"Не надо напрямую писать ник того, кто, по вашему мнению, вас погрифил.";}}i:2;s:154:" Написан не просто так. А потому что в случае вашей ошибки, ник "грифера" - это клевета.";}, 1708502088, 1714438245
    Run Time: 0.001073
  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, 24267, a:1:{i:0;s:289:"При попытке отктрытия двери (моей двери) вылезает его имя, и я точно вспомнил что это он . ОН делал всё на мойх гахзах (хигурально),при мне , когда я в доме был. :mad:";}, 1708502088, 1714438245
    Run Time: 0.001705
  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, 24269, a:1:{i:0;s:32:"Простите, как-как?";}, 1708502088, 1714438245
    Run Time: 0.000726
  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, 24270, a:1:{i:0;s:273:"Я видеа как он взял из МОЕГО сундука МОЁ дерево , зделал дер. топор на МОЁМ верстаке . Я видел как он отметил одну точку, вторую, и ничего несмог сделать.";}, 1708502088, 1714438245
    Run Time: 0.001959
  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, 24272, a:3:{i:0;s:67:"Да успокойся ты) щас разберёмся upd: ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:14:"Black_w0lf_007";}}i:2;s:61:" забанен Дом возвращён владельцу.";}, 1708502088, 1714438245
    Run Time: 0.000698
  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, 24278, a:1:{i:0;s:38:"Да здраствует админ:)";}, 1708502088, 1714438245
    Run Time: 0.001688
  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, 24281, a:3:{i:0;s:61:"[grammar nazi mode on] Не "здраствует", "здра";i:1;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#ff0000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#ff0000]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:2:"в";}}i:2;s:39:"ствует". [/grammar nazi mode off]";}, 1708502088, 1714438245
    Run Time: 0.001427
  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, 24293, a:1:{i:0;s:236:"У меня ещё одна проблема . при превате теретории вылезает надпись что я нахожусь в превате 7777, и при входе в мой дом: "Welcome Matvei94 tu 7777"";}, 1708502088, 1714438245
    Run Time: 0.000967

Included Files (204, XenForo Classes: 67)

  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/EWRporta2/Listener/Init.php
  33. library/EWRmedio/Listener/Init.php
  34. library/XenForo/DataWriter/User.php
  35. library/XenForo/DataWriter.php
  36. library/EWRcarta/Listener/Init.php
  37. library/Brivium/SupportTicketSystem/EventListeners/Listener.php
  38. library/Brivium/BriviumHelper/EventListeners.php
  39. library/Brivium/BriviumHelper/1010071/EventListeners.php
  40. library/Siropu/Chat/Listener.php
  41. library/NodesAsTabs/Listen.php
  42. library/MasterBadge/Listener.php
  43. library/Waindigo/Listener/InitDependencies.php
  44. library/Waindigo/Listener/InitDependencies/20150212.php
  45. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  46. library/ExternalExtended/Listener.php
  47. library/ExtendCommon/EventListener/Model.php
  48. library/WidgetFramework/Listener.php
  49. library/WidgetFramework/Option.php
  50. library/Milano/SmileyManager/Listener.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/WidgetFramework/Route/Filter/PageX.php
  57. library/XenForo/Route/Prefix/Threads.php
  58. library/XenForo/RouteMatch.php
  59. library/NodesAsTabs/Model/Options.php
  60. library/XenForo/ControllerPublic/Thread.php
  61. library/XenForo/ControllerPublic/Abstract.php
  62. library/XenForo/Controller.php
  63. library/KingK/BbCodeManager/EventListener/BbCode.php
  64. library/EWRporta2/Widget/Listener/ArticlesMain.php
  65. library/Nobita/MetaDescription/Listener.php
  66. library/Dark/Duplicate/EventListener/LoadClassController.php
  67. library/XI/Tag/CodeEvent/Listener.php
  68. library/EWRporta2/Listener/Controller.php
  69. library/EWRmedio/Listener/Controller.php
  70. library/NodesAsTabs/ControllerPublic/Thread.php
  71. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  72. library/Nobita/MetaDescription/XenForo/ControllerPublic/Thread.php
  73. library/XI/Tag/ControllerPublic/Thread.php
  74. library/EWRporta2/ControllerPublic/Thread.php
  75. library/EWRmedio/ControllerPublic/Thread.php
  76. library/XenForo/Input.php
  77. library/XenForo/Session.php
  78. library/XenForo/Helper/Ip.php
  79. library/XenForo/Visitor.php
  80. library/XenForo/Model/User.php
  81. library/EWRporta2/Listener/Model.php
  82. library/EWRmedio/Listener/Model.php
  83. library/EWRcarta/Listener/Model.php
  84. library/Brivium/SupportTicketSystem/Model/User.php
  85. library/WidgetFramework/XenForo/Model/User.php
  86. library/EWRporta2/Model/User.php
  87. library/EWRmedio/Model/User.php
  88. library/EWRcarta/Model/User.php
  89. library/MasterBadge/Model/User.php
  90. library/MasterBadge/Model/Badge.php
  91. library/XenForo/Permission.php
  92. library/XenForo/Helper/Php.php
  93. library/XenForo/Phrase.php
  94. library/XenForo/Locale.php
  95. library/Groupchanger/Event.php
  96. library/Groupchanger/StopSpam.php
  97. library/EWRporta2/Model/Perms.php
  98. library/UnreadPostCount/Listener.php
  99. library/XenForo/ControllerHelper/ForumThreadPost.php
  100. library/XenForo/ControllerHelper/Abstract.php
  101. library/XenForo/Model/Thread.php
  102. library/WidgetFramework/XenForo/Model/Thread.php
  103. library/UnreadPostCount/Model/Thread.php
  104. library/Nobita/MetaDescription/XenForo/Model/Thread.php
  105. library/XenForo/Model/Forum.php
  106. library/XenForo/Helper/String.php
  107. library/XenForo/Helper/Discussion.php
  108. library/XenForo/Model/Post.php
  109. library/Waindigo/UserCriteria/Listener/LoadClass.php
  110. library/Waindigo/Listener/LoadClass.php
  111. library/Waindigo/Listener/LoadClass/20150106.php
  112. library/Waindigo/UserCriteria/Extend/XenForo/Model/Post.php
  113. library/EWRporta2/Model/Post.php
  114. library/EWRcarta/Model/Post.php
  115. library/EWRporta2/Model/Articles.php
  116. library/XenForo/Model/Attachment.php
  117. library/XenForo/Model/Node.php
  118. library/XenForo/Route/Prefix/Categories.php
  119. library/XenForo/Route/Prefix/Forums.php
  120. library/XenForo/ControllerResponse/View.php
  121. library/XenForo/ControllerResponse/Abstract.php
  122. library/XenForo/Helper/Cookie.php
  123. library/NodesAsTabs/API.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/ExternalPages/ControllerPublic/online.php
  131. library/WidgetFramework/Model/Widget.php
  132. library/WidgetFramework/Helper/Sort.php
  133. library/WidgetFramework/WidgetRenderer.php
  134. library/XenForo/ViewPublic/Thread/View.php
  135. library/XenForo/ViewPublic/Base.php
  136. library/XenForo/View.php
  137. library/EWRporta2/Listener/ViewPublic.php
  138. library/ExtendCommon/UserModel/EX.php
  139. library/WidgetFramework/XenForo/View1.php
  140. library/XenForo/BbCode/Parser.php
  141. library/XenForo/BbCode/Formatter/Base.php
  142. library/sonnb/XenforoLightbox/Listener.php
  143. library/EWRporta2/Listener/BbCode.php
  144. library/EWRmedio/Listener/BbCode.php
  145. library/EWRcarta/Listener/BbCode.php
  146. library/sonnb/XenforoLightbox/BbCode/Formatter/Base.php
  147. library/KingK/BbCodeManager/BbCode/Formatter/Base.php
  148. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  149. library/EWRporta2/BbCode/Formatter.php
  150. library/EWRmedio/BbCode/Formatter.php
  151. library/EWRcarta/BbCode/Formatter.php
  152. library/KingK/BbCodeManager/Model/CustomBbCode.php
  153. library/XenForo/ViewPublic/Helper/Message.php
  154. library/XenForo/BbCode/TextWrapper.php
  155. library/KingK/BbCodeManager/EventListener/Templates/Preloader.php
  156. library/XenForo/Route/Prefix/Members.php
  157. library/MasterBadge/Route/Prefix/Members.php
  158. library/MasterBadge/Route.php
  159. library/Begin/Listeners/Navigation.php
  160. library/EWRporta2/Listener/NavTabs.php
  161. library/Brivium/SupportTicketSystem/Model/SupportTicket.php
  162. library/Brivium/SupportTicketSystem/Model/KnowledgeBase.php
  163. library/Moder/Listeners/Navigation.php
  164. library/ExternalPages/Listeners/Navigation.php
  165. library/EWRmedio/Listener/NavTabs.php
  166. library/EWRmedio/Model/Perms.php
  167. library/EWRcarta/Listener/NavTabs.php
  168. library/EWRcarta/Model/Perms.php
  169. library/EWRcarta/Model/Lists.php
  170. library/NodesAsTabs/NavTabs.php
  171. library/XenForo/Template/FileHandler.php
  172. library/XenForo/Helper/File.php
  173. internal_data/templates/S.10,L.2,nat_childlinks.php
  174. library/XenForo/Route/Prefix/LinkForums.php
  175. library/WidgetFramework/Template/Extended.php
  176. internal_data/templates/S.10,L.2,thread_view.php
  177. library/KingK/BbCodeManager/EventListener/Templates/InitEditorGrid.php
  178. library/EWRporta2/Listener/Template.php
  179. library/EWRmedio/Listener/Template.php
  180. library/EWRmedio/Model/Lists.php
  181. library/EWRcarta/Listener/Template.php
  182. library/ExternalPages/ControllerPublic/balance.php
  183. library/SvgGoUpDown/Listener.php
  184. library/ExternalPages/ControllerPublic/ShortBannedList.php
  185. internal_data/templates/S.10,L.2,meta_thread_view_tools_links.php
  186. internal_data/templates/S.10,L.2,page_nav.php
  187. library/XenForo/Route/Prefix/Posts.php
  188. library/XenForo/Model/Avatar.php
  189. internal_data/templates/S.10,L.2,bb_code_tag_quote.php
  190. library/WidgetFramework/WidgetRenderer/Empty.php
  191. library/XenForo/Helper/Criteria.php
  192. library/XenForo/Debug.php
  193. internal_data/templates/S.10,L.2,PAGE_CONTAINER.php
  194. internal_data/templates/S.10,L.2,bbcm_js.php
  195. library/Siropu/Chat/Helper.php
  196. internal_data/templates/S.10,L.2,EWRporta2_Navtabs.php
  197. internal_data/templates/S.10,L.2,BRSTS_support_ticket_tab_links.php
  198. internal_data/templates/S.10,L.2,BRSTS_brsts_support_ticket_tab_links.php
  199. internal_data/templates/S.10,L.2,EWRmedio_Navtabs.php
  200. internal_data/templates/S.10,L.2,EWRcarta_Navtabs.php
  201. internal_data/templates/S.10,L.2,nat_linkstemplate.php
  202. internal_data/templates/S.10,L.2,go_up_down.php
  203. library/XenForo/ViewRenderer/Json.php
  204. internal_data/templates/S.10,L.2,nat_bodyjs.php