Page Time: 0.0452s

Memory: 7.6680 MB (Peak: 14.3474 MB)

Queries (18, time: 0.0061s, 13.6%)

  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.000383
    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.000172
    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.000111
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 8842
    Run Time: 0.000203
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  5. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.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 = forum.node_id)
    WHERE node.node_id = ?
    Params: 65
    Run Time: 0.000245
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  6. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 30) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 8842
    Run Time: 0.000701
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,rcdiycom_xenforo.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4rcdiycom_xenforo.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4rcdiycom_xenforo.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4rcdiycom_xenforo.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,rcdiycom_xenforo.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22rcdiycom_xenforo.post.user_id,func1Using where
  7. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 8842
    Run Time: 0.000726
  8. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 5bead91c1d0092e8397b1320a7fc6d40, , 1711658631
    Run Time: 0.000744
  9. 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_Thread, Index, valid, thread_id=8842, 1711655031,
    Run Time: 0.000410
  10. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: uix_nodeCache
    Run Time: 0.000168
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  11. SELECT *
    FROM uix_node_layout
    Run Time: 0.000086
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuix_node_layoutALL    2 
  12. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: uix_nodeCache
    Run Time: 0.000080
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  13. 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', 'xengallery_bb_code_tag_gallery', 'thread_view', 'nat_childlinks')
    	AND style_id = ?
    	AND language_id = ?
    Params: 10, 1
    Run Time: 0.000346
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 10Using where
  14. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('xz_articles_nav', 'nflj_showcase_menu_main_tab')
    Params: 1
    Run Time: 0.000107
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 2Using where
  15. SELECT node.*,
    	node_field.uix_node_icons,
    	node_field.uix_styling,
    	node_field.collapsed,
    	node_field.inheritClass,
    	node_field.inheritStyling
    FROM xf_node AS node
    LEFT JOIN uix_node_fields AS node_field ON (node.node_id = node_field.node_id)
    Run Time: 0.000305
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeALL    56 
    SIMPLEnode_fieldALLPRIMARY   1Using where; Using join buffer (hash join)
  16. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('notice_cookies', 'xenzine_nav', 'nflj_showcase_tab_links', 'xengallery_tab_links', 'resources_tab_links', 'nat_linkstemplate', 'xengallery_comments_block', 'xengallery_media_block_items', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 10, 1
    Run Time: 0.000875
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 9Using where
  17. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('')
    	AND style_id = ?
    	AND language_id = ?
    Params: 10, 1
    Run Time: 0.000253
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       no matching row in const table
  18. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('navigation')
    	AND style_id = ?
    	AND language_id = ?
    Params: 10, 1
    Run Time: 0.000228
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (128, XenForo Classes: 62)

  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/XenZine/Listener.php
  33. library/XenGallery/Listener.php
  34. library/NodesAsTabs/Listen.php
  35. library/XenResource/Listener/Proxy.php
  36. library/Brivium/BriviumHelper/EventListeners.php
  37. library/Brivium/BriviumHelper/1020130/EventListeners.php
  38. library/Audentio/UIX/Listener/CodeEvent.php
  39. library/NFLJ/Showcase/Listener/Proxy.php
  40. library/Audentio/UIX/vendor/autoload.php
  41. library/Audentio/UIX/vendor/composer/autoload_real.php
  42. library/Audentio/UIX/vendor/composer/ClassLoader.php
  43. library/Audentio/UIX/vendor/composer/autoload_namespaces.php
  44. library/Audentio/UIX/vendor/composer/autoload_psr4.php
  45. library/Audentio/UIX/vendor/composer/autoload_classmap.php
  46. library/SolidMean/Cloudflare/Listener.php
  47. library/SolidMean/Cloudflare/ip_in_range.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/Threads.php
  54. library/XenForo/RouteMatch.php
  55. library/XenForo/ControllerPublic/Thread.php
  56. library/XenForo/ControllerPublic/Abstract.php
  57. library/XenForo/Controller.php
  58. library/Andy/ExportThread/Listener.php
  59. library/XenZine/ControllerPublic/Thread.php
  60. library/NodesAsTabs/ControllerPublic/Thread.php
  61. library/NFLJ/Showcase/XenForo/ControllerPublic/Thread.php
  62. library/Andy/ExportThread/ControllerPublic/Thread.php
  63. library/XenForo/Input.php
  64. library/XenForo/Session.php
  65. library/XenForo/Helper/Ip.php
  66. library/XenForo/Visitor.php
  67. library/XenForo/Model/User.php
  68. library/Audentio/UIX/Model/User.php
  69. library/Brivium/ActiveCampaignIntegrate/Model/User.php
  70. library/XenGallery/Model/User.php
  71. library/NFLJ/Showcase/XenForo/Model/User.php
  72. library/XenResource/Listener/Proxy/ModelUser.php
  73. library/XenForo/Permission.php
  74. library/XenForo/Helper/Php.php
  75. library/XenForo/Phrase.php
  76. library/XenForo/Locale.php
  77. library/NFLJ/Showcase/Model/Item.php
  78. library/XenForo/ControllerHelper/ForumThreadPost.php
  79. library/XenForo/ControllerHelper/Abstract.php
  80. library/XenForo/Model/Thread.php
  81. library/Audentio/UIX/Model/Thread.php
  82. library/NFLJ/Showcase/XenForo/Model/Thread.php
  83. library/XenForo/Model/Forum.php
  84. library/XenForo/Helper/String.php
  85. library/XenForo/Model/Post.php
  86. library/Audentio/UIX/Model/Post.php
  87. library/XenForo/Model/Attachment.php
  88. library/XenForo/Model/Node.php
  89. library/Audentio/UIX/Model/Node.php
  90. library/XenForo/Route/Prefix/Categories.php
  91. library/XenForo/Route/Prefix/Forums.php
  92. library/XenForo/ControllerResponse/View.php
  93. library/XenForo/ControllerResponse/Abstract.php
  94. library/XenForo/Helper/Cookie.php
  95. library/NodesAsTabs/API.php
  96. library/NodesAsTabs/Model/Options.php
  97. library/XenResource/Listener/Template.php
  98. library/NFLJ/Showcase/Listener/Template.php
  99. library/XenForo/ViewRenderer/HtmlPublic.php
  100. library/XenForo/ViewRenderer/Abstract.php
  101. library/XenForo/Template/Public.php
  102. library/XenForo/Template/Abstract.php
  103. library/XenForo/ViewPublic/Thread/View.php
  104. library/XenForo/ViewPublic/Base.php
  105. library/XenForo/View.php
  106. library/NFLJ/Showcase/XenForo/ViewPublic/Thread/View.php
  107. library/XenForo/BbCode/Parser.php
  108. library/XenForo/BbCode/Formatter/Base.php
  109. library/XenZine/BbCode/Formatter/Base.php
  110. library/Brivium/ParseHTMLBBCode/BbCode/Formatter/Base.php
  111. library/XenForo/ViewPublic/Helper/Message.php
  112. library/XenForo/BbCode/TextWrapper.php
  113. library/Brivium/ParseHTMLBBCode/EventListeners/Listener.php
  114. library/Audentio/UIX/Model/NodeLayout.php
  115. library/XenForo/Route/Prefix/Members.php
  116. library/XenZine/Model/Perms.php
  117. library/NodesAsTabs/NavTabs.php
  118. library/XenForo/Route/Prefix/LinkForums.php
  119. library/XenForo/Model/StyleProperty.php
  120. library/NFLJ/Showcase/Listener/Criteria.php
  121. library/Brivium/ActiveCampaignIntegrate/EventListeners/Listener.php
  122. library/XenZine/TemplateHooks.php
  123. library/XenForo/Route/Prefix/Posts.php
  124. library/XenForo/Model/Avatar.php
  125. library/XenForo/Helper/Criteria.php
  126. library/XenForo/Debug.php
  127. library/Audentio/UIX/Template/Helper/CanvasNavigation.php
  128. library/XenForo/ViewRenderer/Json.php