Page Time: 0.0616s

Memory: 10.7953 MB (Peak: 16.1319 MB)

Queries (9, time: 0.0109s, 17.7%)

  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.002599
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000302
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  3. SELECT
    	user.*,
    	user_profile.*,
    	user_privacy.*,
    	news_feed.*
    FROM xf_news_feed AS news_feed FORCE INDEX (event_date)
    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 (user.user_state IN ('valid', 'email_confirm_edit')) AND (user.is_banned = 0)
    ORDER BY news_feed.event_date DESC
     LIMIT 15
    Run Time: 0.000667
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnews_feedindex event_date4 1Backward index scan
    SIMPLEusereq_refPRIMARY,user_statePRIMARY4addonslab_xf1.news_feed.user_id1Using where
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4addonslab_xf1.news_feed.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4addonslab_xf1.news_feed.user_id1Using where
    SIMPLEuser_followeq_refPRIMARY,follow_user_idPRIMARY8addonslab_xf1.news_feed.user_id,const1Using where; Using index
  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, score_TOXICITY.total_score AS score_TOXICITY_total, score_OBSCENE.total_score AS score_OBSCENE_total
    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)
                            LEFT JOIN alpa_content_score AS score_TOXICITY ON (score_TOXICITY.content_type='post' AND score_TOXICITY.content_id=post.post_id AND score_TOXICITY.score_id='TOXICITY')   
                        
                            LEFT JOIN alpa_content_score AS score_OBSCENE ON (score_OBSCENE.content_type='post' AND score_OBSCENE.content_id=post.post_id AND score_OBSCENE.score_id='OBSCENE')   
                        
    WHERE post.post_id IN (6717)
    Run Time: 0.000521
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostconstPRIMARY,thread_id_post_date,thread_id_positionPRIMARY4const1 
    SIMPLEthreadconstPRIMARY,node_id_last_post_date,node_id_sticky_state_last_postPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
    SIMPLEscore_TOXICITYconstPRIMARYPRIMARY58const,const,const0unique row not found
    SIMPLEscore_OBSCENEconstPRIMARYPRIMARY58const,const,const0unique row not found
  5. 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 > 1711649400)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.000758
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 105Using where; Backward index scan
    SIMPLEusereq_refPRIMARYPRIMARY4addonslab_xf1.session_activity.user_id1 
  6. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: cb0970dcbd8f1a94fd9ff09bf863ce27, , 1711653900
    Run Time: 0.003200
  7. 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_RecentActivity, Index, valid, , 1711650300,
    Run Time: 0.002175
  8. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'news_feed_item_post_insert', 'news_feed_page_global', 'notice_cookies', 'alwn_tab_links', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 1
    Run Time: 0.000433
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 6Using where
  9. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('alwn_overview', 'alwn_whats_new')
    Params: 1
    Run Time: 0.000267
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 2Using where

Included Files (215, 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/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/AddonsLab/CopyThread/Listener/InitDependencies.php
  33. library/AddonsLab/CopyThread/Abstract/Listener/InitDependencies.php
  34. library/AddonsLab/LinkChecker/Listener/InitDependencies.php
  35. library/AddonsLab/LinkChecker/Abstract/Listener/InitDependencies.php
  36. library/AddonsLab/GuestPosting/Listener/InitDependencies.php
  37. library/AddonsLab/GuestPosting/Abstract/Listener/InitDependencies.php
  38. library/AddonsLab/GuestPosting/App.php
  39. library/AddonsLab/GuestPosting/Library/GuestPostingLibrary.php
  40. library/AddonsLab/Core/App.php
  41. library/AddonsLab/Core/Xf1/AppTrait.php
  42. library/AddonsLab/Core/Container.php
  43. library/AddonsLab/Core/Xf1/RegistryProvider.php
  44. library/AddonsLab/Core/RegistryProviderInterface.php
  45. library/AddonsLab/GuestPosting/Library/Flags.php
  46. library/XenForo/Router.php
  47. library/XenForo/Route/Filter.php
  48. library/XenForo/Route/Interface.php
  49. library/XenForo/Route/ResponseSuffix.php
  50. library/XenForo/Route/Prefix.php
  51. library/XenForo/Route/Prefix/RecentActivity.php
  52. library/XenForo/RouteMatch.php
  53. library/AddonsLab/Tools/Listener/FrontControllerPreDispatch.php
  54. library/AddonsLab/Tools/Abstract/Listener/FrontControllerPreDispatch.php
  55. library/XenForo/ControllerPublic/RecentActivity.php
  56. library/XenForo/ControllerPublic/Abstract.php
  57. library/XenForo/Controller.php
  58. library/XenForo/Input.php
  59. library/XenForo/Session.php
  60. library/XenForo/Helper/Ip.php
  61. library/XenForo/Visitor.php
  62. library/XenForo/Model/User.php
  63. library/AddonsLab/PerspectiveApi/Listener/LoadClassModel.php
  64. library/AddonsLab/PerspectiveApi/Abstract/Listener/LoadClassModel.php
  65. library/AddonsLab/GuestPosting/Listener/LoadClassModel.php
  66. library/AddonsLab/GuestPosting/Abstract/Listener/LoadClassModel.php
  67. library/AddonsLab/PerspectiveApi/Extend/XenForo/Model/User.php
  68. library/AddonsLab/PerspectiveApi/Abstract/Extend/XenForo/Model/User.php
  69. library/AddonsLab/GuestPosting/Extend/XenForo/Model/User.php
  70. library/AddonsLab/GuestPosting/Abstract/Extend/XenForo/Model/User.php
  71. library/XenForo/Permission.php
  72. library/XenForo/Helper/Php.php
  73. library/XenForo/Phrase.php
  74. library/XenForo/Locale.php
  75. library/AddonsLab/GuestPosting/Listener/VisitorSetup.php
  76. library/AddonsLab/GuestPosting/Abstract/Listener/VisitorSetup.php
  77. library/AddonsLab/GuestPosting/Library/GuestSession.php
  78. library/AddonsLab/Core/Xf1/SessionProvider.php
  79. library/AddonsLab/Core/SessionProviderInterface.php
  80. library/AddonsLab/Core/Xf1/CookieProvider.php
  81. library/AddonsLab/Core/CookieProviderInterface.php
  82. library/XenForo/Helper/Cookie.php
  83. library/AddonsLab/Tools/Listener/ControllerPreDispatch.php
  84. library/AddonsLab/Tools/Abstract/Listener/ControllerPreDispatch.php
  85. library/XenForo/Model/NewsFeed.php
  86. library/XenForo/NewsFeedHandler/DiscussionMessage/Post.php
  87. library/XenForo/NewsFeedHandler/DiscussionMessage.php
  88. library/XenForo/NewsFeedHandler/Abstract.php
  89. library/XenForo/Model/Post.php
  90. library/AddonsLab/LinkChecker/Listener/LoadClassModel.php
  91. library/AddonsLab/LinkChecker/Abstract/Listener/LoadClassModel.php
  92. library/AddonsLab/ThreadThumbnail/Listener/LoadClassModel.php
  93. library/AddonsLab/ThreadThumbnail/Abstract/Listener/LoadClassModel.php
  94. library/AddonsLab/LikeLimitPerNode/Listener/LoadClassModel.php
  95. library/AddonsLab/LikeLimitPerNode/Abstract/Listener/LoadClassModel.php
  96. library/AddonsLab/PerspectiveApi/Extend/XenForo/Model/Post.php
  97. library/AddonsLab/PerspectiveApi/Abstract/Extend/XenForo/Model/Post.php
  98. library/AddonsLab/LinkChecker/Extend/XenForo/Model/Post.php
  99. library/AddonsLab/LinkChecker/Abstract/Extend/XenForo/Model/Post.php
  100. library/AddonsLab/GuestPosting/Extend/XenForo/Model/Post.php
  101. library/AddonsLab/GuestPosting/Abstract/Extend/XenForo/Model/Post.php
  102. library/AddonsLab/ThreadThumbnail/Extend/XenForo/Model/Post.php
  103. library/AddonsLab/ThreadThumbnail/Abstract/Extend/XenForo/Model/Post.php
  104. library/AddonsLab/LikeLimitPerNode/Extend/XenForo/Model/Post.php
  105. library/AddonsLab/LikeLimitPerNode/Abstract/Extend/XenForo/Model/Post.php
  106. library/XenForo/Model/Thread.php
  107. library/AddonsLab/AddPollOption/Listener/LoadClassModel.php
  108. library/AddonsLab/AddPollOption/Abstract/Listener/LoadClassModel.php
  109. library/AddonsLab/CopyThread/Listener/LoadClassModel.php
  110. library/AddonsLab/CopyThread/Abstract/Listener/LoadClassModel.php
  111. library/AddonsLab/PostLimitPerNode/Listener/LoadClassModel.php
  112. library/AddonsLab/PostLimitPerNode/Abstract/Listener/LoadClassModel.php
  113. library/AddonsLab/AddPollOption/Extend/XenForo/Model/Thread.php
  114. library/AddonsLab/AddPollOption/Abstract/Extend/XenForo/Model/Thread.php
  115. library/AddonsLab/CopyThread/Extend/XenForo/Model/Thread.php
  116. library/AddonsLab/CopyThread/Abstract/Extend/XenForo/Model/Thread.php
  117. library/AddonsLab/PostLimitPerNode/Extend/XenForo/Model/Thread.php
  118. library/AddonsLab/PostLimitPerNode/Abstract/Extend/XenForo/Model/Thread.php
  119. library/AddonsLab/GuestPosting/Extend/XenForo/Model/Thread.php
  120. library/AddonsLab/GuestPosting/Abstract/Extend/XenForo/Model/Thread.php
  121. library/AddonsLab/ThreadThumbnail/Extend/XenForo/Model/Thread.php
  122. library/AddonsLab/ThreadThumbnail/Abstract/Extend/XenForo/Model/Thread.php
  123. library/AddonsLab/PerspectiveApi/Model/Api.php
  124. library/AddonsLab/PerspectiveApi/ApiModel/Toxicity.php
  125. library/AddonsLab/PerspectiveApi/ApiModel/AbstractModel.php
  126. library/AddonsLab/PerspectiveApi/ApiModel/Spam.php
  127. library/AddonsLab/PerspectiveApi/ApiModel/Obscene.php
  128. library/XenForo/Model/Forum.php
  129. library/AddonsLab/PostLimitPerNode/Extend/XenForo/Model/Forum.php
  130. library/AddonsLab/PostLimitPerNode/Abstract/Extend/XenForo/Model/Forum.php
  131. library/AddonsLab/GuestPosting/Extend/XenForo/Model/Forum.php
  132. library/AddonsLab/GuestPosting/Abstract/Extend/XenForo/Model/Forum.php
  133. library/XenForo/Helper/String.php
  134. library/XenForo/Model/Session.php
  135. library/XenForo/ControllerResponse/View.php
  136. library/XenForo/ControllerResponse/Abstract.php
  137. library/AddonsLab/Website/Listener/ControllerPostDispatch.php
  138. library/AddonsLab/Website/Abstract/Listener/ControllerPostDispatch.php
  139. library/XenForo/ViewRenderer/HtmlPublic.php
  140. library/XenForo/ViewRenderer/Abstract.php
  141. library/XenForo/Template/Public.php
  142. library/XenForo/Template/Abstract.php
  143. library/AddonsLab/Tools/Listener/FrontControllerPreView.php
  144. library/AddonsLab/Tools/Abstract/Listener/FrontControllerPreView.php
  145. library/AddonsLab/LinkChecker/Listener/FrontControllerPreView.php
  146. library/AddonsLab/LinkChecker/Abstract/Listener/FrontControllerPreView.php
  147. library/AddonsLab/GuestPosting/Listener/FrontControllerPreView.php
  148. library/AddonsLab/GuestPosting/Abstract/Listener/FrontControllerPreView.php
  149. library/XenForo/ViewPublic/NewsFeed/View.php
  150. library/XenForo/ViewPublic/Base.php
  151. library/XenForo/View.php
  152. library/XenForo/ViewPublic/Helper/NewsFeed.php
  153. library/AddonsLab/QuickThread/Listener/TemplateCreate.php
  154. library/AddonsLab/QuickThread/Abstract/Listener/TemplateCreate.php
  155. library/AddonsLab/QuickThread/ThreadPromptProvider.php
  156. library/AddonsLab/OriginalPosterHighlight/Listener/TemplateCreate.php
  157. library/AddonsLab/OriginalPosterHighlight/Abstract/Listener/TemplateCreate.php
  158. library/XenForo/Route/Prefix/Members.php
  159. library/AddonsLab/WhatIsNew/Listener/NavigationTabs.php
  160. library/AddonsLab/WhatIsNew/Abstract/Listener/NavigationTabs.php
  161. library/AddonsLab/WhatIsNew/App.php
  162. library/AddonsLab/Core/Xf1/OptionProvider.php
  163. library/AddonsLab/Core/OptionProviderInterface.php
  164. library/XenForo/ControllerPublic/FindNew.php
  165. library/AddonsLab/WhatIsNew/Listener/LoadClassController.php
  166. library/AddonsLab/WhatIsNew/Abstract/Listener/LoadClassController.php
  167. library/AddonsLab/WhatIsNew/Extend/XenForo/ControllerPublic/FindNew.php
  168. library/AddonsLab/WhatIsNew/Abstract/Extend/XenForo/ControllerPublic/FindNew.php
  169. library/AddonsLab/Core/Xf1/PhraseProvider.php
  170. library/AddonsLab/Core/PhraseProviderInterface.php
  171. library/AddonsLab/Website/Listener/TemplateCreate.php
  172. library/AddonsLab/Website/Abstract/Listener/TemplateCreate.php
  173. library/XenForo/Route/Prefix/Posts.php
  174. library/XenForo/Route/Prefix/Threads.php
  175. library/XenForo/Helper/Criteria.php
  176. library/XenForo/Debug.php
  177. library/AddonsLab/Website/Route/PrefixPublic/Home.php
  178. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Home.php
  179. library/AddonsLab/Website/Route/PrefixPublic/Services.php
  180. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Services.php
  181. library/AddonsLab/Website/Route/PrefixPublic/Portfolio.php
  182. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Portfolio.php
  183. library/AddonsLab/Website/Route/PrefixPublic/Pricing.php
  184. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Pricing.php
  185. library/AddonsLab/PerspectiveApi/Listener/TemplateHook.php
  186. library/AddonsLab/PerspectiveApi/Abstract/Listener/TemplateHook.php
  187. library/AddonsLab/PerspectiveApi/Licensing/Engine/Xf1.php
  188. library/AddonsLab/Licensing/Engine/Xf1.php
  189. library/AddonsLab/Licensing/Engine/AbstractEngine.php
  190. library/AddonsLab/Licensing/Engine/AbstractEngineInterface.php
  191. library/AddonsLab/Licensing/Checker.php
  192. library/AddonsLab/Licensing/StorageDriver/File.php
  193. library/AddonsLab/Licensing/StorageDriver/AbstractStorageDriver.php
  194. library/XenForo/Helper/File.php
  195. library/AddonsLab/Licensing/StorageDriver/Database.php
  196. library/AddonsLab/Licensing/LicenseData.php
  197. library/AddonsLab/Licensing/Encoder.php
  198. library/AddonsLab/WhatIsNew/Listener/TemplateHook.php
  199. library/AddonsLab/WhatIsNew/Abstract/Listener/TemplateHook.php
  200. library/AddonsLab/Licensing/LicenseValidationService.php
  201. library/AddonsLab/WhatIsNew/Licensing/Engine/Xf1.php
  202. library/AddonsLab/LinkChecker/Listener/TemplateHook.php
  203. library/AddonsLab/LinkChecker/Abstract/Listener/TemplateHook.php
  204. library/AddonsLab/LinkChecker/Licensing/Engine/Xf1.php
  205. library/AddonsLab/GuestPosting/Listener/TemplateHook.php
  206. library/AddonsLab/GuestPosting/Abstract/Listener/TemplateHook.php
  207. library/AddonsLab/GuestPosting/Licensing/Engine/Xf1.php
  208. library/AddonsLab/GuestPosting/Library/Service/ProductOptionProvider.php
  209. library/AddonsLab/ThreadThumbnail/Listener/TemplateHook.php
  210. library/AddonsLab/ThreadThumbnail/Abstract/Listener/TemplateHook.php
  211. library/AddonsLab/ThreadThumbnail/Licensing/Engine/Xf1.php
  212. library/AddonsLab/QuickThread/Listener/TemplateHook.php
  213. library/AddonsLab/QuickThread/Abstract/Listener/TemplateHook.php
  214. library/AddonsLab/QuickThread/Licensing/Engine/Xf1.php
  215. library/XenForo/ViewRenderer/Json.php