Page Time: 0.0670s

Memory: 10.8176 MB (Peak: 16.3009 MB)

Queries (13, time: 0.0129s, 19.3%)

  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.002621
    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.000333
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  3. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache,
    		IF (session_activity.view_date IS NULL, user.last_activity, session_activity.view_date) AS effective_last_activity,
    		session_activity.view_date, session_activity.controller_name, session_activity.controller_action, session_activity.params, session_activity.ip,
    		0 AS following_0, score_setting_TOXICITY.score_value AS score_setting_TOXICITY_value, score_setting_OBSCENE.score_value AS score_setting_OBSCENE_value
    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)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(session_activity.user_id = user.user_id AND session_activity.unique_key = CAST(user.user_id AS BINARY))
                            LEFT JOIN alpa_user_score_setting AS score_setting_TOXICITY ON (score_setting_TOXICITY.user_id=user.user_id AND score_setting_TOXICITY.score_id='TOXICITY')   
                        
                            LEFT JOIN alpa_user_score_setting AS score_setting_OBSCENE ON (score_setting_OBSCENE.user_id=user.user_id AND score_setting_OBSCENE.score_id='OBSCENE')   
                        
    WHERE user.user_id = ?
    Params: 1
    Run Time: 0.000582
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
    SIMPLEsession_activityconstPRIMARYPRIMARY22const,const0unique row not found
    SIMPLEscore_setting_TOXICITYconstPRIMARYPRIMARY31const,const1 
    SIMPLEscore_setting_OBSCENEconstPRIMARYPRIMARY31const,const0unique row not found
  4. SELECT COUNT(*)
    FROM xf_profile_post AS profile_post
    
    WHERE (profile_post.profile_user_id = 1) AND (profile_post.message_state IN ('visible'))
    Run Time: 0.000283
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postrefprofile_user_id_post_dateprofile_user_id_post_date4const2Using where
  5. SELECT profile_post.*
    	,
    	posting_user.*,
    	IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
    	0 AS like_date
    FROM xf_profile_post AS profile_post
    
    	LEFT JOIN xf_user AS posting_user ON
    		(posting_user.user_id = profile_post.user_id)
    WHERE (profile_post.profile_user_id = 1) AND (profile_post.message_state IN ('visible'))
    ORDER BY profile_post.post_date DESC
     LIMIT 20
    Run Time: 0.000340
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postrefprofile_user_id_post_dateprofile_user_id_post_date4const2Using where; Backward index scan
    SIMPLEposting_usereq_refPRIMARYPRIMARY4addonslab_xf1.profile_post.user_id1 
  6. SELECT profile_post_comment.*
    ,
    		user.*,
    		IF(user.username IS NULL, profile_post_comment.username, user.username) AS username,
    			0 AS like_date
    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(3)) AND (profile_post_comment.message_state IN ('visible'))
    Run Time: 0.000261
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_post_commentconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  7. SELECT user_field.*
    	,
    	field_value.field_value
    FROM xf_user_field AS user_field
    
    	LEFT JOIN xf_user_field_value AS field_value ON
    		(field_value.field_id = user_field.field_id AND field_value.user_id = 1)
    WHERE (user_field.display_group <> 'preferences' AND user_field.viewable_profile = 1)
    ORDER BY user_field.display_group, user_field.display_order
    Run Time: 0.000489
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_fieldALLdisplay_group_order   7Using where; Using filesort
    SIMPLEfield_valueeq_refPRIMARY,field_idPRIMARY31const,addonslab_xf1.user_field.field_id1 
  8. SELECT COUNT(*)
    FROM xf_user_follow
    WHERE follow_user_id = ?
    Params: 1
    Run Time: 0.000190
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_user_followrefPRIMARY,follow_user_idfollow_user_id4const1Using index
  9. SELECT user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_user_follow AS user_follow
    INNER JOIN xf_user AS user ON
    	(user.user_id = user_follow.user_id AND user.is_banned = 0)
    INNER JOIN xf_user_profile AS user_profile ON
    	(user_profile.user_id = user.user_id)
    INNER JOIN xf_user_option AS user_option ON
    	(user_option.user_id = user.user_id)
    WHERE user_follow.follow_user_id = ?
    ORDER BY RAND()
     LIMIT 6
    Params: 1
    Run Time: 0.000549
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_followrefPRIMARY,follow_user_idfollow_user_id4const1Using index; Using temporary; Using filesort
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4addonslab_xf1.user_follow.user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4addonslab_xf1.user_follow.user_id1Using where
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4addonslab_xf1.user_follow.user_id1 
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: e575414230ec261844c6c17894240ff2, , 1711657508
    Run Time: 0.002942
  11. 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, Member, valid, user_id=1, 1711653908,
    Run Time: 0.003274
  12. 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', 'member_view', 'notice_cookies', 'alwn_tab_links', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 1
    Run Time: 0.000873
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 11Using where
  13. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('user_field_aim_desc', 'user_field_icq_desc', 'user_field_yahoo_desc', 'user_field_skype_desc', 'user_field_facebook_desc', 'user_field_twitter_desc', 'alwn_overview', 'alwn_whats_new')
    Params: 1
    Run Time: 0.000197
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 8Using where

Included Files (188, XenForo Classes: 59)

  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/Members.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/Member.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/ControllerResponse/Reroute.php
  86. library/XenForo/ControllerResponse/Abstract.php
  87. library/AddonsLab/Website/Listener/ControllerPostDispatch.php
  88. library/AddonsLab/Website/Abstract/Listener/ControllerPostDispatch.php
  89. library/XenForo/ControllerHelper/UserProfile.php
  90. library/XenForo/ControllerHelper/Abstract.php
  91. library/AddonsLab/PerspectiveApi/Model/Api.php
  92. library/AddonsLab/PerspectiveApi/ApiModel/Toxicity.php
  93. library/AddonsLab/PerspectiveApi/ApiModel/AbstractModel.php
  94. library/AddonsLab/PerspectiveApi/ApiModel/Spam.php
  95. library/AddonsLab/PerspectiveApi/ApiModel/Obscene.php
  96. library/XenForo/Model/UserProfile.php
  97. library/XenForo/Model/ProfilePost.php
  98. library/AddonsLab/LikeLimitPerNode/Listener/LoadClassModel.php
  99. library/AddonsLab/LikeLimitPerNode/Abstract/Listener/LoadClassModel.php
  100. library/AddonsLab/LikeLimitPerNode/Extend/XenForo/Model/ProfilePost.php
  101. library/AddonsLab/LikeLimitPerNode/Abstract/Extend/XenForo/Model/ProfilePost.php
  102. library/XenForo/Model/UserField.php
  103. library/XenForo/Model/UserIgnore.php
  104. library/XenForo/Model/Conversation.php
  105. library/XenForo/ControllerResponse/View.php
  106. library/XenForo/ViewRenderer/HtmlPublic.php
  107. library/XenForo/ViewRenderer/Abstract.php
  108. library/XenForo/Template/Public.php
  109. library/XenForo/Template/Abstract.php
  110. library/AddonsLab/Tools/Listener/FrontControllerPreView.php
  111. library/AddonsLab/Tools/Abstract/Listener/FrontControllerPreView.php
  112. library/AddonsLab/LinkChecker/Listener/FrontControllerPreView.php
  113. library/AddonsLab/LinkChecker/Abstract/Listener/FrontControllerPreView.php
  114. library/AddonsLab/GuestPosting/Listener/FrontControllerPreView.php
  115. library/AddonsLab/GuestPosting/Abstract/Listener/FrontControllerPreView.php
  116. library/XenForo/ViewPublic/Member/View.php
  117. library/XenForo/ViewPublic/Base.php
  118. library/XenForo/View.php
  119. library/XenForo/BbCode/Parser.php
  120. library/XenForo/BbCode/Formatter/Base.php
  121. library/AddonsLab/LinkChecker/Listener/LoadClassBbCode.php
  122. library/AddonsLab/LinkChecker/Abstract/Listener/LoadClassBbCode.php
  123. library/AddonsLab/LinkChecker/Extend/XenForo/BbCode/Formatter/Base.php
  124. library/AddonsLab/LinkChecker/Abstract/Extend/XenForo/BbCode/Formatter/Base.php
  125. library/XenForo/BbCode/TextWrapper.php
  126. library/AddonsLab/QuickThread/Listener/TemplateCreate.php
  127. library/AddonsLab/QuickThread/Abstract/Listener/TemplateCreate.php
  128. library/AddonsLab/QuickThread/ThreadPromptProvider.php
  129. library/AddonsLab/OriginalPosterHighlight/Listener/TemplateCreate.php
  130. library/AddonsLab/OriginalPosterHighlight/Abstract/Listener/TemplateCreate.php
  131. library/AddonsLab/WhatIsNew/Listener/NavigationTabs.php
  132. library/AddonsLab/WhatIsNew/Abstract/Listener/NavigationTabs.php
  133. library/AddonsLab/WhatIsNew/App.php
  134. library/AddonsLab/Core/Xf1/OptionProvider.php
  135. library/AddonsLab/Core/OptionProviderInterface.php
  136. library/XenForo/ControllerPublic/FindNew.php
  137. library/AddonsLab/WhatIsNew/Listener/LoadClassController.php
  138. library/AddonsLab/WhatIsNew/Abstract/Listener/LoadClassController.php
  139. library/AddonsLab/WhatIsNew/Extend/XenForo/ControllerPublic/FindNew.php
  140. library/AddonsLab/WhatIsNew/Abstract/Extend/XenForo/ControllerPublic/FindNew.php
  141. library/AddonsLab/Core/Xf1/PhraseProvider.php
  142. library/AddonsLab/Core/PhraseProviderInterface.php
  143. library/AddonsLab/Website/Listener/TemplateCreate.php
  144. library/AddonsLab/Website/Abstract/Listener/TemplateCreate.php
  145. library/XenForo/Route/Prefix/ProfilePosts.php
  146. library/XenForo/Model/Avatar.php
  147. library/XenForo/Helper/String.php
  148. library/XenForo/Helper/Criteria.php
  149. library/XenForo/Debug.php
  150. library/AddonsLab/Website/Route/PrefixPublic/Home.php
  151. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Home.php
  152. library/AddonsLab/Website/Route/PrefixPublic/Services.php
  153. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Services.php
  154. library/AddonsLab/Website/Route/PrefixPublic/Portfolio.php
  155. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Portfolio.php
  156. library/AddonsLab/Website/Route/PrefixPublic/Pricing.php
  157. library/AddonsLab/Website/Abstract/Route/PrefixPublic/Pricing.php
  158. library/AddonsLab/PerspectiveApi/Listener/TemplateHook.php
  159. library/AddonsLab/PerspectiveApi/Abstract/Listener/TemplateHook.php
  160. library/AddonsLab/PerspectiveApi/Licensing/Engine/Xf1.php
  161. library/AddonsLab/Licensing/Engine/Xf1.php
  162. library/AddonsLab/Licensing/Engine/AbstractEngine.php
  163. library/AddonsLab/Licensing/Engine/AbstractEngineInterface.php
  164. library/AddonsLab/Licensing/Checker.php
  165. library/AddonsLab/Licensing/StorageDriver/File.php
  166. library/AddonsLab/Licensing/StorageDriver/AbstractStorageDriver.php
  167. library/XenForo/Helper/File.php
  168. library/AddonsLab/Licensing/StorageDriver/Database.php
  169. library/AddonsLab/Licensing/LicenseData.php
  170. library/AddonsLab/Licensing/Encoder.php
  171. library/AddonsLab/WhatIsNew/Listener/TemplateHook.php
  172. library/AddonsLab/WhatIsNew/Abstract/Listener/TemplateHook.php
  173. library/AddonsLab/Licensing/LicenseValidationService.php
  174. library/AddonsLab/WhatIsNew/Licensing/Engine/Xf1.php
  175. library/AddonsLab/LinkChecker/Listener/TemplateHook.php
  176. library/AddonsLab/LinkChecker/Abstract/Listener/TemplateHook.php
  177. library/AddonsLab/LinkChecker/Licensing/Engine/Xf1.php
  178. library/AddonsLab/GuestPosting/Listener/TemplateHook.php
  179. library/AddonsLab/GuestPosting/Abstract/Listener/TemplateHook.php
  180. library/AddonsLab/GuestPosting/Licensing/Engine/Xf1.php
  181. library/AddonsLab/GuestPosting/Library/Service/ProductOptionProvider.php
  182. library/AddonsLab/ThreadThumbnail/Listener/TemplateHook.php
  183. library/AddonsLab/ThreadThumbnail/Abstract/Listener/TemplateHook.php
  184. library/AddonsLab/ThreadThumbnail/Licensing/Engine/Xf1.php
  185. library/AddonsLab/QuickThread/Listener/TemplateHook.php
  186. library/AddonsLab/QuickThread/Abstract/Listener/TemplateHook.php
  187. library/AddonsLab/QuickThread/Licensing/Engine/Xf1.php
  188. library/XenForo/ViewRenderer/Json.php