Page Time: 0.0923s

Memory: 5.4048 MB (Peak: 6.5484 MB)

Queries (22, time: 0.0078s, 8.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.000414
    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.000113
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000136
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: brBriviumAddOns, a:0:{}
    Run Time: 0.000201
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000126
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  6. 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: 33553
    Run Time: 0.000625
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  7. 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: 14
    Run Time: 0.000661
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  8. 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, session.view_date
    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)LEFT OUTER JOIN xf_session_activity AS session ON post.user_id = session.user_id
    WHERE post.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 20) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 33553
    Run Time: 0.001323
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4oilgaold_new.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4oilgaold_new.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4oilgaold_new.post.user_id1 
    SIMPLEsession_activityrefPRIMARYPRIMARY4oilgaold_new.post.user_id11Using where
    SIMPLEsessionrefPRIMARYPRIMARY4oilgaold_new.post.user_id11 
  9. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 33553
    Run Time: 0.000159
  10. SELECT xf_thread.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title
    FROM xf_thread
    LEFT JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
    LEFT JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
    WHERE xf_thread.node_id = 14 AND xf_thread.thread_id != 33553 AND xf_thread.post_date < 1710822171 AND xf_thread.discussion_state = 'visible'
    ORDER BY xf_thread.thread_id DESC
    LIMIT 2
    Run Time: 0.000725
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_datePRIMARY4 8201Using where
    SIMPLExf_posteq_refPRIMARYPRIMARY4oilgaold_new.xf_thread.first_post_id1 
    SIMPLExf_nodeconstPRIMARYPRIMARY4const1 
  11. SELECT xf_thread.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title
    FROM xf_thread
    LEFT JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
    LEFT JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
    WHERE xf_thread.node_id = 14 AND xf_thread.thread_id != 33553 AND xf_thread.post_date > 1710217371 AND xf_thread.post_date < 1710822171 AND xf_thread.discussion_state = 'visible'
    ORDER BY xf_thread.view_count DESC
    LIMIT 6
    Run Time: 0.000591
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_datepost_date4 1Using index condition; Using where; Using filesort
    SIMPLExf_posteq_refPRIMARYPRIMARY4oilgaold_new.xf_thread.first_post_id1 
    SIMPLExf_nodeconstPRIMARYPRIMARY4const1 
  12.  SELECT * FROM xf_post WHERE post_id = '36359'
    Run Time: 0.000364
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_postconstPRIMARYPRIMARY4const1 
  13. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 83d8428bdbb7f2493d9d915518b537c0, , 1710825771
    Run Time: 0.000212
  14. 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=33553, 1710822171,
    Run Time: 0.000253
  15. 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.000496
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEoptionsALLnode_id   47Using where; Using filesort
    SIMPLEnodeeq_refPRIMARYPRIMARY4oilgaold_new.options.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,oilgaold_new.options.node_id1Using where
  16. 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', 'BRQCT_forum_list_nodes', 'BRQCT_ad_sidebar_top', 'BRQCT_button_top_ctrl', 'thread_view', 'xenCODE_Meta_Keywords', 'wf_widget_wrapper', 'wf_widget_threads', 'wf_hook_moderator_bar', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.000499
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 16Using where
  17. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRQCT_button_top_ctrl', 'RT_UserOnlineRibbon')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.000151
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where
  18. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('offline')
    Params: 2
    Run Time: 0.000131
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  19. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRQCT_button_top_ctrl', 'VNXF_More_Thread')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.000166
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where
  20. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_fad44cd50aebe48a543de')
    Run Time: 0.000157
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  21. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRQCT_button_top_ctrl', 'BRQCT_navigation_tabs_forums')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.000140
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where
  22. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRQCT_button_top_ctrl', 'nat_bodyjs')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.000135
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where

Included Files (163, XenForo Classes: 60)

  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/Waindigo/Listener/InitDependencies.php
  33. library/Waindigo/Listener/InitDependencies/20150212.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1010071/EventListeners.php
  36. library/VNXF/MoreThread/Listener.php
  37. library/VNXF/FacebookGraph/Listener.php
  38. library/VNXF/ImageView/Listener.php
  39. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  40. library/WidgetFramework/Listener.php
  41. library/WidgetFramework/Option.php
  42. library/NodesAsTabs/Listen.php
  43. library/EWRporta/Listener/Model.php
  44. library/Asp/OnlineStatus/Plugin/Plugin.php
  45. library/Brivium/BriviumHelper/Model/ListenerClass.php
  46. library/Brivium/BriviumHelper/1010071/Model/ListenerClass.php
  47. library/Brivium/CustomNodeStyle/EventListener/Listener.php
  48. library/XenForo/Router.php
  49. library/XenForo/Route/Filter.php
  50. library/XenForo/Route/Interface.php
  51. library/XenForo/Route/ResponseSuffix.php
  52. library/XenForo/Route/Prefix.php
  53. library/Waindigo/ShorterRoutes/Listener/InitRouterPublic.php
  54. library/Waindigo/ShorterRoutes/Route/ShorterRoute.php
  55. library/WidgetFramework/Route/Filter/PageX.php
  56. library/XenForo/Route/Prefix/Threads.php
  57. library/Waindigo/ShorterRoutes/Listener/LoadClass.php
  58. library/Waindigo/Listener/LoadClass.php
  59. library/Waindigo/Listener/LoadClass/20150106.php
  60. library/EWRporta/Listener/Route.php
  61. library/vtLai/UrlKhongDau/Listener.php
  62. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Threads.php
  63. library/EWRporta/Route/Thread.php
  64. library/vtLai/UrlKhongDau/Threads.php
  65. library/XenForo/RouteMatch.php
  66. library/XenForo/ControllerPublic/Thread.php
  67. library/XenForo/ControllerPublic/Abstract.php
  68. library/XenForo/Controller.php
  69. library/xenCODE/AutoPing/Listener.php
  70. library/EWRporta/Listener/Controller.php
  71. library/Vinavb/CustomNodeIcon/Listener.php
  72. library/Andy/SimilarThreads/Listener.php
  73. library/VNXF/MoreThread/ControllerPublic/Thread.php
  74. library/VNXF/FacebookGraph/ControllerPublic/Thread.php
  75. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  76. library/NodesAsTabs/ControllerPublic/Thread.php
  77. library/EWRporta/ControllerPublic/Thread.php
  78. library/Andy/SimilarThreads/ControllerPublic/Thread.php
  79. library/XenForo/Input.php
  80. library/XenForo/Session.php
  81. library/XenForo/Helper/Ip.php
  82. library/XenForo/Visitor.php
  83. library/XenForo/Model/User.php
  84. library/WidgetFramework/XenForo/Model/User.php
  85. library/XenForo/Permission.php
  86. library/XenForo/Phrase.php
  87. library/XenForo/Locale.php
  88. library/EWRporta/Model/Perms.php
  89. library/XenForo/ControllerHelper/ForumThreadPost.php
  90. library/XenForo/ControllerHelper/Abstract.php
  91. library/XenForo/Model/Thread.php
  92. library/WidgetFramework/XenForo/Model/Thread.php
  93. library/XenForo/Model/Forum.php
  94. library/XenForo/Helper/String.php
  95. library/XenForo/Model/Post.php
  96. library/EWRporta/Model/Post.php
  97. library/Asp/OnlineStatus/Model/AspPost.php
  98. library/vtLai/UrlKhongDau/Converter.php
  99. library/Waindigo/ShorterRoutes/Link.php
  100. library/XenForo/Model/Attachment.php
  101. library/VNXF/ImageView/Attachment.php
  102. library/EWRporta/Model/Attachment.php
  103. library/XenForo/Model/Node.php
  104. library/Brivium/CustomNodeStyle/Model/Node.php
  105. library/XenForo/Route/Prefix/Categories.php
  106. library/vtLai/UrlKhongDau/Categories.php
  107. library/XenForo/Route/Prefix/Forums.php
  108. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Forums.php
  109. library/vtLai/UrlKhongDau/Forums.php
  110. library/XenForo/ControllerResponse/View.php
  111. library/XenForo/ControllerResponse/Abstract.php
  112. library/VNXF/MoreThread/Model.php
  113. library/VNXF/FacebookGraph/Model.php
  114. library/XenForo/Helper/Cookie.php
  115. library/NodesAsTabs/API.php
  116. library/NodesAsTabs/Model/Options.php
  117. library/XenForo/ViewRenderer/HtmlPublic.php
  118. library/XenForo/ViewRenderer/Abstract.php
  119. library/XenForo/Template/Public.php
  120. library/XenForo/Template/Abstract.php
  121. library/WidgetFramework/Core.php
  122. library/XenForo/Model/Moderator.php
  123. library/Brivium/QuickCreateThread/EventListeners/Listener.php
  124. library/Brivium/BriviumLibrary/EventListeners.php
  125. library/WidgetFramework/Model/Widget.php
  126. library/WidgetFramework/Helper/LayoutEditor.php
  127. library/WidgetFramework/Helper/Sort.php
  128. library/WidgetFramework/WidgetRenderer.php
  129. library/XenForo/ViewPublic/Thread/View.php
  130. library/XenForo/ViewPublic/Base.php
  131. library/XenForo/View.php
  132. library/EWRporta/Listener/ViewPublic.php
  133. library/VNXF/ImageView/View.php
  134. library/WidgetFramework/XenForo/View1.php
  135. library/EWRporta/ViewPublic/Custom.php
  136. library/XenForo/BbCode/Parser.php
  137. library/XenForo/BbCode/Formatter/Base.php
  138. library/EWRporta/Listener/BbCode.php
  139. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  140. library/EWRporta/BbCode/Formatter.php
  141. library/XenForo/ViewPublic/Helper/Message.php
  142. library/XenForo/BbCode/TextWrapper.php
  143. library/xenCODE/MetaKeywords/Listener.php
  144. library/WidgetFramework/WidgetRenderer/Empty.php
  145. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  146. library/WidgetFramework/WidgetRenderer/Html.php
  147. library/XenForo/Route/Prefix/Members.php
  148. library/vtLai/UrlKhongDau/Members.php
  149. library/EWRporta/Listener/NavTabs.php
  150. library/NodesAsTabs/NavTabs.php
  151. library/WidgetFramework/WidgetRenderer/Threads.php
  152. library/WidgetFramework/Model/Cache.php
  153. library/WidgetFramework/Template/Extended.php
  154. library/EWRporta/Listener/Template.php
  155. library/EWRporta/Model/Promotes.php
  156. library/XenForo/Route/Prefix/Posts.php
  157. library/XenForo/Model/Avatar.php
  158. library/XenForo/Model/Session.php
  159. library/WidgetFramework/Helper/String.php
  160. library/XenForo/Debug.php
  161. library/Brivium/QuickCreateThread/Route/Prefix/CreateThread.php
  162. library/XenForo/ViewRenderer/Json.php
  163. library/Vinavb/CustomNodeIcon/Icon.php