Page Time: 0.0651s

Memory: 7.6353 MB (Peak: 9.1857 MB)

Queries (11, time: 0.0097s, 14.9%)

  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.000735
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: moods
    Run Time: 0.000176
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  3. SELECT session_data
    FROM xf_session
    WHERE session_id = ?
    	AND expiry_date >= ?
    Params: 6c49aed68b85ff428aea81c8c55dcb36, 1716157629
    Run Time: 0.000222
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_sessionconstPRIMARY,expiry_datePRIMARY34const1 
  4. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000193
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  5. SELECT *
    FROM xf_search
    WHERE search_id = ?
    Params: 21814706
    Run Time: 0.000703
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_searchconstPRIMARYPRIMARY4const1 
  6. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: dark_postrating_ratings
    Run Time: 0.000080
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  7. 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
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (1,14,2,4,5,6,7,8,10)) as positive_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (13)) as negative_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (3,9,11,12)) as neutral_rating_count
    	,
    pr_cache.rating_cache,
    pr2.rating
    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)
    left join dark_postrating_post_cache pr_cache ON (post.post_id = pr_cache.post_id)
    left join dark_postrating pr2 on (post.post_id = pr2.post_id and pr2.user_id = 0)
    WHERE post.post_id IN (395413, 395412, 395411, 395410, 395409, 395408, 395302, 395181, 395180, 395179, 395177, 395176, 395175, 395174, 395173, 395168, 395161, 395039, 394950, 394948)
    Run Time: 0.002691
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrangePRIMARY,thread_id_post_date,thread_id_positionPRIMARY4 20Using where
    PRIMARYusereq_refPRIMARYPRIMARY4forum.post.user_id1 
    PRIMARYthreadeq_refPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4forum.post.thread_id1 
    PRIMARYnodeeq_refPRIMARYPRIMARY4forum.thread.node_id1 
    PRIMARYpermissioneq_refPRIMARYPRIMARY35const,const,forum.node.node_id1 
    PRIMARYpr_cacheeq_refPRIMARYPRIMARY4forum.post.post_id1 
    PRIMARYpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8forum.post.post_id,const1 
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4forum.post.user_id2Using where
    DEPENDENT SUBQUERYdark_postrating_counteq_refuser_id_ratinguser_id_rating8forum.post.user_id,const1 
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4forum.post.user_id2Using where
  8. SELECT user.*
    	,
    	user_profile.*,
    	user_option.*,
    	user_privacy.*
    ,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,14,2,4,5,6,7,8,10)) as positive_rating_count
    
    	, (user.like_count + coalesce((select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (1,14,2,4,5,6,7,8,10)), 0)) as positive_rating_count_incl_likes
    
    ,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (13)) as negative_rating_count
    
    ,(select sum(count_received) from dark_postrating_count where user_id = user.user_id and rating in (3,9,11,12)) as neutral_rating_count
    
    ,(select sum(count_received) from dark_postrating_count where user_id = user.user_id) as total_rating_count
    
    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 IN ('')
    ORDER BY user.username
    Run Time: 0.000610
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARY       Impossible WHERE noticed after reading const tables
    DEPENDENT SUBQUERY       Impossible WHERE noticed after reading const tables
    DEPENDENT SUBQUERY       Impossible WHERE noticed after reading const tables
    DEPENDENT SUBQUERY       Impossible WHERE noticed after reading const tables
    DEPENDENT SUBQUERY       Impossible WHERE noticed after reading const tables
    DEPENDENT SUBQUERY       Impossible WHERE noticed after reading const tables
  9. UPDATE `xf_session` SET `expiry_date` = ? WHERE (session_id = '6c49aed68b85ff428aea81c8c55dcb36')
    Params: 1716161229
    Run Time: 0.000198
  10. 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_Search, Results, valid, search_id=21814706, 1716157629,
    Run Time: 0.000100
  11. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'profile_view_count', 'xfc_notepad_sidebar', 'search_result_post', 'th_article_list_thumbnail_thumbnails', 'th_thread_list_thumbnail_thumbnails', 'search_results', 'dark_postrating', 'dark_postrating_member', 'dark_postrating_member_totals', 'message_user_info_extra', 'user_criteria_content', 'thread_list_item_icon_key', 'dark_postrating_member_notable_tabs', 'dark_postrating_account_wrapper', 'dark_postrating_navigation_visitor_tab', 'dark_postrating_visitor_panel', 'dark_postrating_member_card', 'dark_postrating_member_info', 'dark_postrating_message_user_info', 'siropu_chat', 'siropu_chat_disabled', 'threadrating_rate', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 2
    Run Time: 0.003964
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 24Using where

Included Files (150, XenForo Classes: 56)

  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/ChipXF/MobileSwitcher/Listener.php
  33. library/ChipXF/MobileSwitcher/Detecter.php
  34. library/XenForo/Visitor.php
  35. library/ThemeHouse/Listener/InitDependencies.php
  36. library/ThemeHouse/Listener/InitDependencies/20170101.php
  37. library/ThemeHouse/Listener/ControllerPreDispatch/20150911.php
  38. library/XenMoods/Listener/InitDependencies.php
  39. library/Tinhte/XenTag/Listener.php
  40. library/SK/MarkThreadRead/Listeners.php
  41. library/XenMoods/Listener/LoadClassModel.php
  42. library/NixFifty/TrashCan/Listener/Listen.php
  43. library/TilkiBey/ThreadCount/Listener.php
  44. library/Dark/PostRating/EventListener.php
  45. library/Siropu/Chat/Listener.php
  46. library/MobileRead/ProfileBbCode/Listener/InitDependencies.php
  47. library/Snog/CountryFlags/Listener/Dependencies.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/XenForo/Route/Prefix/Search.php
  54. library/XenForo/RouteMatch.php
  55. library/XenForo/ControllerPublic/Search.php
  56. library/XenForo/ControllerPublic/Abstract.php
  57. library/XenForo/Controller.php
  58. library/ThreadRating/Listener/Class.php
  59. library/Vinavb/CustomNodeIcon/Listener.php
  60. library/Awedo/PostAreas/Listener/LoadClassController.php
  61. library/ProfileViewCount/Listener.php
  62. library/ConversationPost/Listener.php
  63. library/XFCrowd/NotePad/Listener.php
  64. library/XenForo/Input.php
  65. library/XenForo/Session.php
  66. library/XenForo/Helper/Ip.php
  67. library/XenForo/Model/User.php
  68. library/SV/UserActivity/Listener.php
  69. library/SV/ReportImprovements/Listener.php
  70. library/XenMoods/XFCP/Model/User.php
  71. library/TilkiBey/ThreadCount/Extends/Model/User.php
  72. library/Dark/PostRating/Model/User.php
  73. library/SV/UserActivity/XenForo/Model/User.php
  74. library/SV/ReportImprovements/XenForo/Model/User.php
  75. library/XenForo/Permission.php
  76. library/XenForo/Helper/Php.php
  77. library/XenForo/Phrase.php
  78. library/XenForo/Locale.php
  79. library/Snog/CountryFlags/Listener/Visitor.php
  80. library/Snog/CountryFlags/Listener/Includes/Reader.php
  81. library/Snog/CountryFlags/Listener/Includes/Reader/Decoder.php
  82. library/Snog/CountryFlags/Listener/Includes/Reader/InvalidDatabaseException.php
  83. library/Snog/CountryFlags/Listener/Includes/Reader/Metadata.php
  84. library/Snog/CountryFlags/Listener/Includes/Reader/Util.php
  85. library/XenForo/Model/Report.php
  86. library/SV/ReportImprovements/XenForo/Model/Report.php
  87. library/XenForo/ControllerResponse/Reroute.php
  88. library/XenForo/ControllerResponse/Abstract.php
  89. library/XenForo/Model/Search.php
  90. library/XenForo/Search/DataHandler/Post.php
  91. library/XenForo/Search/DataHandler/Abstract.php
  92. library/Tinhte/XenTag/XenForo/Search/DataHandler/Post.php
  93. library/XenForo/Model/Post.php
  94. library/Snog/CountryFlags/Listener/Post.php
  95. library/Dark/PostRating/Model/Post.php
  96. library/Dark/PostRating/Model.php
  97. library/XenForo/Model/Thread.php
  98. library/SV/TitleEditHistory/Listener.php
  99. library/rellect/LikesSummary/Listener/Proxy.php
  100. library/Snog/CountryFlags/Listener/Thread.php
  101. library/SV/TitleEditHistory/XenForo/Model/Thread.php
  102. library/Tinhte/XenTag/XenForo/Model/Thread.php
  103. library/Dark/PostRating/Model/Thread.php
  104. library/ThreadRating/Model/Thread.php
  105. library/rellect/LikesSummary/XenForo/Model/Thread.php
  106. library/Snog/CountryFlags/Model/Thread.php
  107. library/SV/ReportImprovements/XenForo/Model/Thread.php
  108. library/XenForo/Model/Forum.php
  109. library/Tinhte/XenTag/XenForo/Model/Forum.php
  110. library/SV/ReportImprovements/XenForo/Model/Forum.php
  111. library/XenForo/Helper/String.php
  112. library/XenForo/ControllerResponse/View.php
  113. library/SV/UserActivity/Model.php
  114. library/XenForo/ViewRenderer/HtmlPublic.php
  115. library/XenForo/ViewRenderer/Abstract.php
  116. library/XenForo/Template/Public.php
  117. library/XenForo/Template/Abstract.php
  118. library/XenMoods/Listener/FrontControllerPreView.php
  119. library/XenMoods/Model/Mood.php
  120. library/XenForo/ViewPublic/Search/Results.php
  121. library/XenForo/ViewPublic/Base.php
  122. library/XenForo/View.php
  123. library/XenForo/ViewPublic/Helper/Search.php
  124. library/ThemeHouse/Thumbnails/Listener/TemplateCreate.php
  125. library/ThemeHouse/Listener/TemplateCreate.php
  126. library/ThemeHouse/Listener/TemplateCreate/20150106.php
  127. library/AddonsLab/OriginalPosterHighlight/Listener/TemplateCreate.php
  128. library/AddonsLab/OriginalPosterHighlight/Abstract/Listener/TemplateCreate.php
  129. library/XenForo/Route/Prefix/Members.php
  130. library/Siropu/Chat/Helper.php
  131. library/ThreadRating/Listener/Template.php
  132. library/Sedo/ToggleME/Listener.php
  133. library/ThemeHouse/Thumbnails/Listener/TemplatePostRender.php
  134. library/ThemeHouse/Listener/TemplatePostRender.php
  135. library/ThemeHouse/Listener/TemplatePostRender/20150106.php
  136. library/ThemeHouse/Listener/Template.php
  137. library/ThemeHouse/Listener/Template/20150106.php
  138. library/XenForo/Model/Avatar.php
  139. library/XenForo/Route/Prefix/Posts.php
  140. library/XenForo/Route/Prefix/Forums.php
  141. library/XenForo/Helper/Criteria.php
  142. library/XenForo/Debug.php
  143. library/ThemeHouse/Thumbnails/Listener/TemplateHook.php
  144. library/ThemeHouse/Listener/TemplateHook.php
  145. library/ThemeHouse/Listener/TemplateHook/20150106.php
  146. library/XenMoods/Listener/TemplateHook.php
  147. library/Siropu/Chat/HelperDevice.php
  148. library/Siropu/Chat/ThirdParty/Mobile_Detect.php
  149. library/XenForo/ViewRenderer/Json.php
  150. library/Vinavb/CustomNodeIcon/Icon.php