Page Time: 0.1455s

Memory: 4.5378 MB (Peak: 29.7386 MB)

Queries (15, time: 0.0210s, 14.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.001385
    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.000220
    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.000219
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		0 AS following_0
    FROM xf_user AS user
    
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = user.user_id)
    		LEFT JOIN xf_user_option AS user_option ON
    			(user_option.user_id = user.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = user.user_id)
    WHERE user.user_id = ?
    Params: 10937
    Run Time: 0.000896
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
  5. SELECT search_index.content_type, search_index.content_id
    FROM xf_search_index AS search_index
    WHERE search_index.user_id = ?
    	
    ORDER BY search_index.item_date DESC
     LIMIT 15
    Params: 10937
    Run Time: 0.002581
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsearch_indexrefuser_id_item_dateuser_id_item_date4const7Using where
  6. 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
    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)
    WHERE thread.thread_id IN (46323, 46139)
    Run Time: 0.001753
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 2Using where
    SIMPLEusereq_refPRIMARYPRIMARY4tuyhoapl_DATA.thread.user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4tuyhoapl_DATA.thread.node_id1 
    SIMPLEposteq_refPRIMARYPRIMARY4tuyhoapl_DATA.thread.first_post_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,tuyhoapl_DATA.thread.node_id1Using where
  7. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 26
    Run Time: 0.000195
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  8. 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,
    		node.title AS node_title, node.node_name,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    	permission.cache_value AS node_permission_cache
    FROM xf_post AS post
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		INNER JOIN xf_node AS node ON
    			(node.node_id = thread.node_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_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)
    WHERE post.post_id IN (82773, 82685, 82515)
    Run Time: 0.001679
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 3Using where
    SIMPLEusereq_refPRIMARYPRIMARY4tuyhoapl_DATA.post.user_id1 
    SIMPLEthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4tuyhoapl_DATA.post.thread_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4tuyhoapl_DATA.thread.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,tuyhoapl_DATA.thread.node_id1Using where
  9. SELECT profile_post_comment.*
    ,
    		user.*,
    		IF(user.username IS NULL, profile_post_comment.username, user.username) AS username
    FROM xf_profile_post_comment AS profile_post_comment
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = profile_post_comment.user_id)
    WHERE profile_post_comment.profile_post_comment_id IN (254)
    Run Time: 0.000444
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_post_commentconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  10. SELECT profile_post.*
    	,
    		receiving_user.username
    			AS profile_username,
    		receiving_user.gender
    			AS profile_gender,
    		receiving_user.user_state
    			AS profile_user_state,
    		receiving_user.user_group_id
    			AS profile_user_group_id,
    		receiving_user.secondary_group_ids
    			AS profile_secondary_group_ids,
    		receiving_user.display_style_group_id
    			AS profile_display_style_group_id,
    		receiving_user.is_banned
    			AS profile_is_banned,
    		receiving_user.is_admin
    			AS profile_is_admin,
    		receiving_user.is_moderator
    			AS profile_is_moderator,
    		receiving_user.avatar_date
    			AS profile_avatar_date,
    		receiving_user.gravatar
    			AS profile_gravatar,
    		receiving_user.warning_points
    			AS profile_warning_points,
    		receiving_user.permission_combination_id
    			AS profile_permission_combination_id
    FROM xf_profile_post AS profile_post
    
    		LEFT JOIN xf_user AS receiving_user ON
    			(receiving_user.user_id = profile_post.profile_user_id)
    WHERE profile_post.profile_post_id IN(1051)
    Run Time: 0.000381
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postconstPRIMARYPRIMARY4const1 
    SIMPLEreceiving_userconstPRIMARYPRIMARY4const1 
  11. SELECT user.*
    	,
    	user_privacy.*,
    	0 AS following_0
    FROM xf_user AS user
    
    	LEFT JOIN xf_user_privacy AS user_privacy ON
    		(user_privacy.user_id = user.user_id)
    WHERE user.user_id IN (10936)
    ORDER BY user.username
    Run Time: 0.000390
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
  12. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: a3b8b01cdb6bda021c727e5282908afe, , 1713489410
    Run Time: 0.000178
  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_Member, RecentContent, valid, user_id=10937, 1713485810,
    Run Time: 0.000137
  14. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'search_result_thread', 'search_result_post', 'search_result_profile_post_comment', 'member_recent_content', 'wf_widget_wrapper', 'wf_widget_online_users', '_widget_renderer_template_16', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000680
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 9Using where
  15. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1710893810)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.009841
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 3713Using where
    SIMPLEusereq_refPRIMARYPRIMARY4tuyhoapl_DATA.session_activity.user_id1 

Included Files (126, XenForo Classes: 68)

  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/VNXF/Stats/Listener.php
  35. library/Brivium/BriviumHelper/EventListeners.php
  36. library/Brivium/BriviumHelper/1020131/EventListeners.php
  37. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  38. library/WidgetFramework/Listener.php
  39. library/WidgetFramework/Option.php
  40. library/Brivium/CustomNodeStyle/EventListener/Listener.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/Waindigo/ShorterRoutes/Listener/InitRouterPublic.php
  47. library/Waindigo/ShorterRoutes/Route/ShorterRoute.php
  48. library/XenForo/Route/Prefix/Members.php
  49. library/XenForo/RouteMatch.php
  50. library/XenForo/ControllerPublic/Member.php
  51. library/XenForo/ControllerPublic/Abstract.php
  52. library/XenForo/Controller.php
  53. library/VietXf/MoreThread/Listener.php
  54. library/VfcodersHH/Listener/LoadClass.php
  55. library/VfcodersHH/ControllerPublic/Member.php
  56. library/XenForo/Input.php
  57. library/XenForo/Session.php
  58. library/XenForo/Helper/Ip.php
  59. library/XenForo/Visitor.php
  60. library/XenForo/Model/User.php
  61. library/XenForo/Permission.php
  62. library/XenForo/Helper/Php.php
  63. library/XenForo/Phrase.php
  64. library/XenForo/Locale.php
  65. library/XenForo/ControllerHelper/UserProfile.php
  66. library/XenForo/ControllerHelper/Abstract.php
  67. library/XenForo/Model/UserProfile.php
  68. library/XenForo/Search/SourceHandler/Abstract.php
  69. library/XenForo/Search/SourceHandler/MySqlFt.php
  70. library/XenForo/Model/Search.php
  71. library/XenForo/Search/DataHandler/Thread.php
  72. library/XenForo/Search/DataHandler/Abstract.php
  73. library/VfcodersHH/Search/DataHandler/Thread.php
  74. library/XenForo/Search/DataHandler/Post.php
  75. library/VfcodersHH/Search/DataHandler/Post.php
  76. library/XenForo/Search/DataHandler/ProfilePostComment.php
  77. library/XenForo/Model/Thread.php
  78. library/XenForo/Model/Forum.php
  79. library/VfcodersHH/Model/Permission.php
  80. library/VfcodersHH/Helper/Parse.php
  81. library/XenForo/Model/PermissionCache.php
  82. library/XenForo/Helper/String.php
  83. library/XenForo/Model/Post.php
  84. library/XenForo/Model/ProfilePost.php
  85. library/XenForo/ControllerResponse/View.php
  86. library/XenForo/ControllerResponse/Abstract.php
  87. library/XenForo/Helper/Cookie.php
  88. library/XenForo/ViewRenderer/HtmlPublic.php
  89. library/XenForo/ViewRenderer/Abstract.php
  90. library/XenForo/Template/Public.php
  91. library/XenForo/Template/Abstract.php
  92. library/WidgetFramework/Core.php
  93. library/XenForo/Model/Moderator.php
  94. library/WidgetFramework/Model/Widget.php
  95. library/WidgetFramework/Helper/Sort.php
  96. library/XenForo/ViewPublic/Member/RecentContent.php
  97. library/XenForo/ViewPublic/Base.php
  98. library/XenForo/View.php
  99. library/XenForo/ViewPublic/Helper/Search.php
  100. library/VfcodersHH/Listener/TemplateCreate.php
  101. library/WidgetFramework/WidgetRenderer.php
  102. library/WidgetFramework/WidgetRenderer/OnlineUsers.php
  103. library/WidgetFramework/WidgetRenderer/Template.php
  104. library/WidgetFramework/Model/WidgetRenderer/Template.php
  105. library/WidgetFramework/Template/Extended.php
  106. library/XenForo/Model/Avatar.php
  107. library/XenForo/Route/Prefix/Threads.php
  108. library/Waindigo/ShorterRoutes/Listener/LoadClass.php
  109. library/Waindigo/Listener/LoadClass.php
  110. library/Waindigo/Listener/LoadClass/20150106.php
  111. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Threads.php
  112. library/Waindigo/ShorterRoutes/Link.php
  113. library/XenForo/Route/Prefix/Forums.php
  114. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Forums.php
  115. library/XenForo/Route/Prefix/Posts.php
  116. library/XenForo/Route/Prefix/ProfilePosts.php
  117. library/VfcodersHH/Listener/Hook.php
  118. library/SeparateStickyAndNormal/Listener.php
  119. library/XenForo/Helper/Criteria.php
  120. library/XenForo/Debug.php
  121. library/WidgetFramework/Helper/String.php
  122. library/WidgetFramework/DataWriter/Widget.php
  123. library/XenForo/DataWriter.php
  124. library/Zend/Exception.php
  125. library/XenForo/Model/Session.php
  126. library/XenForo/ViewRenderer/Json.php