Page Time: 0.0846s

Memory: 5.0611 MB (Peak: 6.2787 MB)

Queries (7, time: 0.0054s, 6.3%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000151
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. 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: 54668
    Run Time: 0.001366
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
  3. SELECT
    	user.*,
    	user_profile.*,
    	user_privacy.*,
    	news_feed.*
    FROM xf_news_feed AS news_feed 
    INNER JOIN xf_user AS user ON
    	(user.user_id = news_feed.user_id)
    INNER JOIN xf_user_profile AS user_profile ON
    	(user_profile.user_id = user.user_id)
    LEFT JOIN xf_user_follow AS user_follow ON
    	(user_follow.user_id = user.user_id
    	AND user_follow.follow_user_id = 0)
    INNER JOIN xf_user_privacy AS user_privacy ON
    	(user_privacy.user_id = user.user_id
    		
    			AND (user.user_id = 0
    				OR (
    					user_privacy.allow_receive_news_feed <> 'none'
    					AND IF(user_privacy.allow_receive_news_feed = 'members', 0, 1)
    					AND IF(user_privacy.allow_receive_news_feed = 'followed', user_follow.user_id IS NOT NULL, 1)
    				)
    			)
    		
    	)
    WHERE (news_feed.user_id = 54668)
    ORDER BY news_feed.event_date DESC
     LIMIT 15
    Run Time: 0.001130
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_followconstPRIMARY,follow_user_idPRIMARY8const,const0Unique row not found
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEnews_feedrefuserId_eventDateuserId_eventDate4const145Using where
  4. 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,
    	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_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 (4339822, 4339817, 4339813, 4339810, 4339808, 4339804, 4339801, 4339798, 4339795, 4339792, 4339789, 4339787, 4335520, 4335517, 4335513)
    Run Time: 0.001400
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 15Using where
    SIMPLEthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4ccxsccxs_dd.post.thread_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4ccxsccxs_dd.thread.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,ccxsccxs_dd.thread.node_id1Using where
  5. 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, RecentActivity, valid, user_id=54668, 1711711401,
    Run Time: 0.000128
  6. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'news_feed_item_post_insert', 'member_recent_activity', 'wf_hook_footer', 'wf_hook_moderator_bar', 'dark_taigachat', 'dark_taigachat_list', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000206
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 8Using where
  7. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    		LEFT JOIN xf_permission_combination AS permission_combination ON
    			(permission_combination.permission_combination_id = user.permission_combination_id)
    WHERE user.user_id = ?
    Params: 54668
    Run Time: 0.000988
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 

Included Files (125, XenForo Classes: 58)

  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/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/WidgetFramework/Listener.php
  29. library/WidgetFramework/Option.php
  30. library/WidgetFramework/ShippableHelper/Updater.php
  31. library/Brivium/BriviumHelper/EventListeners.php
  32. library/Brivium/BriviumHelper/1010071/EventListeners.php
  33. library/VNXF/Loto/Listener.php
  34. library/UserInfo/Listener.php
  35. library/VietXfAdvStats/Listener.php
  36. library/Dark/TaigaChat/EventListener/Listener.php
  37. library/bdMedal/Listener.php
  38. library/HDJuegos/WaterMarkAdd/Listener.php
  39. library/LiamW/AllRich/Addon.php
  40. library/XenForo/Router.php
  41. library/XenForo/Route/Filter.php
  42. library/XenForo/Route/Interface.php
  43. library/XenForo/Route/ResponseSuffix.php
  44. library/XenForo/Route/Prefix.php
  45. library/XenForo/Route/Prefix/Members.php
  46. library/vtLai/UrlKhongDau/Listener.php
  47. library/vtLai/UrlKhongDau/Members.php
  48. library/XenForo/RouteMatch.php
  49. library/XenForo/ControllerPublic/Member.php
  50. library/XenForo/ControllerPublic/Abstract.php
  51. library/XenForo/Controller.php
  52. library/Vinavb/CustomNodeIcon/Listener.php
  53. library/XenPlaza/XPlimitLink/Listener/Listener.php
  54. library/bdMedal/Extend/ControllerPublic/Member.php
  55. library/XenForo/Input.php
  56. library/XenForo/Session.php
  57. library/Zend/Db.php
  58. library/Zend/Db/Adapter/Mysqli.php
  59. library/Zend/Db/Adapter/Abstract.php
  60. library/Zend/Db/Select.php
  61. library/Zend/Db/Expr.php
  62. library/Zend/Db/Profiler.php
  63. library/Zend/Db/Statement/Mysqli.php
  64. library/Zend/Db/Statement.php
  65. library/Zend/Db/Statement/Interface.php
  66. library/XenForo/Helper/Ip.php
  67. library/XenForo/Visitor.php
  68. library/XenForo/Model/User.php
  69. library/UserInfo/User.php
  70. library/WidgetFramework/XenForo/Model/User.php
  71. library/VietXfAdvStats/XenForo/Model/User.php
  72. library/Zend/Db/Profiler/Query.php
  73. library/XenForo/Permission.php
  74. library/XenForo/Helper/Php.php
  75. library/XenForo/Phrase.php
  76. library/XenForo/Locale.php
  77. library/XenForo/ControllerHelper/UserProfile.php
  78. library/XenForo/ControllerHelper/Abstract.php
  79. library/XenForo/Model/UserProfile.php
  80. library/XenForo/Model/NewsFeed.php
  81. library/XenForo/NewsFeedHandler/DiscussionMessage/Post.php
  82. library/XenForo/NewsFeedHandler/DiscussionMessage.php
  83. library/XenForo/NewsFeedHandler/Abstract.php
  84. library/XenForo/Model/Post.php
  85. library/Brivium/CommentEachPost/Model/Post.php
  86. library/XenForo/Model/Thread.php
  87. library/WidgetFramework/XenForo/Model/Thread.php
  88. library/VietXfAdvStats/XenForo/Model/Thread.php
  89. library/XenForo/Model/Forum.php
  90. library/XenForo/Helper/String.php
  91. library/XenForo/ControllerResponse/View.php
  92. library/XenForo/ControllerResponse/Abstract.php
  93. library/XenForo/Helper/Cookie.php
  94. library/XenForo/ViewRenderer/HtmlPublic.php
  95. library/XenForo/ViewRenderer/Abstract.php
  96. library/XenForo/Template/Public.php
  97. library/XenForo/Template/Abstract.php
  98. library/WidgetFramework/Core.php
  99. library/XenForo/Model/Moderator.php
  100. library/WidgetFramework/Model/Widget.php
  101. library/WidgetFramework/Helper/Sort.php
  102. library/XenForo/ViewPublic/Member/RecentActivity.php
  103. library/XenForo/ViewPublic/Base.php
  104. library/XenForo/View.php
  105. library/Dark/ParseHTML/EventListener.php
  106. library/WidgetFramework/XenForo/View1.php
  107. library/XenForo/ViewPublic/Helper/NewsFeed.php
  108. library/VietXfAdvStats/Model/GetUserGroup.php
  109. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  110. library/bdMedal/Option.php
  111. library/WidgetFramework/Template/Extended.php
  112. library/LiamW/AllRich/Template/Helper/Core.php
  113. library/vtLai/UrlKhongDau/Converter.php
  114. library/XenForo/Route/Prefix/Posts.php
  115. library/XenForo/Route/Prefix/Threads.php
  116. library/vtLai/UrlKhongDau/Threads.php
  117. library/XenForo/Helper/Criteria.php
  118. library/XenForo/Debug.php
  119. library/Brivium/CommentEachPost/EventListeners/Listener.php
  120. library/VNXF/LikeInfo/Listener.php
  121. library/Tinhte/Html5Uploader/Listener.php
  122. library/VietXfAdvStats/Option.php
  123. library/Tinhte/Html5Uploader/Template.php
  124. library/XenForo/ViewRenderer/Json.php
  125. library/Vinavb/CustomNodeIcon/Icon.php