Page Time: 0.8778s

Memory: 10.4270 MB (Peak: 12.3579 MB)

Queries (21, time: 0.8118s, 92.5%)

  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.000487
    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.000121
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000122
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. 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 
  5. 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,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg,
    	privacy.snog_flag_view
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN tr_thread_rate AS rate ON (rate.thread_id = thread.thread_id)
    	LEFT JOIN xf_user_privacy AS privacy ON
    		(privacy.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 197685
    Run Time: 0.000508
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0unique row not found
    SIMPLEprivacyconstPRIMARYPRIMARY4const1 
  6. 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: 12
    Run Time: 0.000265
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  7. SELECT post.*
    	,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    		,(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
    
    		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_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))
    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.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 20) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 197685
    Run Time: 0.001904
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrangethread_id_post_date,thread_id_positionthread_id_position8 1Using where; Using filesort
    PRIMARYusereq_refPRIMARYPRIMARY4forum.post.user_id1 
    PRIMARYuser_profileeq_refPRIMARYPRIMARY4forum.post.user_id1 
    PRIMARYuser_privacyeq_refPRIMARYPRIMARY4forum.post.user_id1 
    PRIMARYsession_activityeq_refPRIMARYPRIMARY22forum.post.user_id,func1 
    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. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 197685
    Run Time: 0.000105
  9. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (283085)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000275
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4forum.attachment.data_id1Using where
  10. SELECT
    	post.*
    	,
    pr_cache.rating_cache,
    pr2.rating
    FROM xf_post AS post
    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 (283085)
    Run Time: 0.000236
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostconstPRIMARYPRIMARY4const1 
    SIMPLEpr_cacheconstPRIMARYPRIMARY4const0unique row not found
    SIMPLEpr2constpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8const,const0unique row not found
  11. SELECT post_id
    FROM xf_bookmark
    WHERE xf_bookmark.user_id = ?
    Params: 0
    Run Time: 0.000073
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_bookmarkindex post_user_id8 790Using where; Using index
  12. SELECT *
    FROM xf_node
    
    ORDER BY lft ASC
    Run Time: 0.000216
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALL    170Using filesort
  13. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000196
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const280Using where
  14. SELECT params
    FROM xf_session_activity
    WHERE user_id = ?
    AND controller_action = 'CreateThread'
    Params: 0
    Run Time: 0.000425
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_session_activityrefPRIMARYPRIMARY4const629Using where
  15. SELECT xf_thread.thread_id, 
    xf_thread.node_id,
    xf_thread.title, 
    xf_thread.reply_count,
    xf_thread.view_count, 
    xf_thread.username, 
    xf_thread.post_date,
    xf_thread.last_post_date, 
    xf_thread.last_post_user_id, 
    xf_thread.last_post_username, 
    xf_thread.prefix_id, 			 
    xf_node.title AS nodeTitle, 
    xf_user.user_id, 
    xf_user.gender, 
    xf_user.avatar_date	
    FROM xf_thread
    INNER JOIN xf_node ON xf_node.node_id = xf_thread.node_id
    INNER JOIN xf_user ON xf_user.user_id = xf_thread.user_id
    WHERE xf_thread.title LIKE '%Anais%'
    AND xf_thread.title LIKE '%Demoustier%'
    AND xf_thread.title LIKE '%Isild%'
    AND xf_thread.discussion_state = 'visible'
    AND xf_thread.discussion_type <> 'redirect'
    AND xf_thread.post_date >= ?
    AND (xf_thread.node_id = 1 OR xf_thread.node_id = 3 OR xf_thread.node_id = 4 OR xf_thread.node_id = 5 OR xf_thread.node_id = 83 OR xf_thread.node_id = 223 OR xf_thread.node_id = 222 OR xf_thread.node_id = 220 OR xf_thread.node_id = 221 OR xf_thread.node_id = 219 OR xf_thread.node_id = 116 OR xf_thread.node_id = 50 OR xf_thread.node_id = 78 OR xf_thread.node_id = 72 OR xf_thread.node_id = 71 OR xf_thread.node_id = 69 OR xf_thread.node_id = 64 OR xf_thread.node_id = 63 OR xf_thread.node_id = 51 OR xf_thread.node_id = 52 OR xf_thread.node_id = 113 OR xf_thread.node_id = 114 OR xf_thread.node_id = 101 OR xf_thread.node_id = 110 OR xf_thread.node_id = 99 OR xf_thread.node_id = 100 OR xf_thread.node_id = 109 OR xf_thread.node_id = 98 OR xf_thread.node_id = 90 OR xf_thread.node_id = 95 OR xf_thread.node_id = 91 OR xf_thread.node_id = 86 OR xf_thread.node_id = 84 OR xf_thread.node_id = 164 OR xf_thread.node_id = 158 OR xf_thread.node_id = 157 OR xf_thread.node_id = 142 OR xf_thread.node_id = 132 OR xf_thread.node_id = 136 OR xf_thread.node_id = 127 OR xf_thread.node_id = 122 OR xf_thread.node_id = 121 OR xf_thread.node_id = 118 OR xf_thread.node_id = 117 OR xf_thread.node_id = 191 OR xf_thread.node_id = 187 OR xf_thread.node_id = 179 OR xf_thread.node_id = 177 OR xf_thread.node_id = 173 OR xf_thread.node_id = 170 OR xf_thread.node_id = 165 OR xf_thread.node_id = 171 OR xf_thread.node_id = 205 OR xf_thread.node_id = 198 OR xf_thread.node_id = 218 OR xf_thread.node_id = 213 OR xf_thread.node_id = 215 OR xf_thread.node_id = 70 OR xf_thread.node_id = 207 OR xf_thread.node_id = 209 OR xf_thread.node_id = 214 OR xf_thread.node_id = 210 OR xf_thread.node_id = 73 OR xf_thread.node_id = 6 OR xf_thread.node_id = 7 OR xf_thread.node_id = 8 OR xf_thread.node_id = 111 OR xf_thread.node_id = 216 OR xf_thread.node_id = 17 OR xf_thread.node_id = 18 OR xf_thread.node_id = 9 OR xf_thread.node_id = 10 OR xf_thread.node_id = 27 OR xf_thread.node_id = 21 OR xf_thread.node_id = 82 OR xf_thread.node_id = 45 OR xf_thread.node_id = 46 OR xf_thread.node_id = 81 OR xf_thread.node_id = 92 OR xf_thread.node_id = 49 OR xf_thread.node_id = 76 OR xf_thread.node_id = 62 OR xf_thread.node_id = 61 OR xf_thread.node_id = 93 OR xf_thread.node_id = 41 OR xf_thread.node_id = 87 OR xf_thread.node_id = 67 OR xf_thread.node_id = 68 OR xf_thread.node_id = 217 OR xf_thread.node_id = 212 OR xf_thread.node_id = 211 OR xf_thread.node_id = 204 OR xf_thread.node_id = 192 OR xf_thread.node_id = 193 OR xf_thread.node_id = 194 OR xf_thread.node_id = 195 OR xf_thread.node_id = 196 OR xf_thread.node_id = 197 OR xf_thread.node_id = 89 OR xf_thread.node_id = 163 OR xf_thread.node_id = 77 OR xf_thread.node_id = 88 OR xf_thread.node_id = 174 OR xf_thread.node_id = 11 OR xf_thread.node_id = 12 OR xf_thread.node_id = 13 OR xf_thread.node_id = 126 OR xf_thread.node_id = 14 OR xf_thread.node_id = 15 OR xf_thread.node_id = 22 OR xf_thread.node_id = 34 OR xf_thread.node_id = 35 OR xf_thread.node_id = 199 OR xf_thread.node_id = 32 OR xf_thread.node_id = 102 OR xf_thread.node_id = 115 OR xf_thread.node_id = 128 OR xf_thread.node_id = 129 OR xf_thread.node_id = 125 OR xf_thread.node_id = 130 OR xf_thread.node_id = 140 OR xf_thread.node_id = 119 OR xf_thread.node_id = 131 OR xf_thread.node_id = 23 OR xf_thread.node_id = 29 OR xf_thread.node_id = 24 OR xf_thread.node_id = 26 OR xf_thread.node_id = 42 OR xf_thread.node_id = 25 OR xf_thread.node_id = 30 OR xf_thread.node_id = 79)
    AND xf_thread.thread_id <> '197685'
    
    
    ORDER BY xf_thread.post_date DESC
    LIMIT ?
    Params: 0, 5
    Run Time: 0.742768
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date,user_idpost_date4 172048Using where
    SIMPLExf_usereq_refPRIMARYPRIMARY4forum.xf_thread.user_id1 
    SIMPLExf_nodeeq_refPRIMARYPRIMARY4forum.xf_thread.node_id1 
  16. SELECT xf_thread.thread_id, 
    xf_thread.node_id,
    xf_thread.title, 
    xf_thread.reply_count,
    xf_thread.view_count, 
    xf_thread.username, 
    xf_thread.post_date,
    xf_thread.last_post_date, 
    xf_thread.last_post_user_id, 
    xf_thread.last_post_username, 
    xf_thread.prefix_id, 			 
    xf_node.title AS nodeTitle, 
    xf_user.user_id, 
    xf_user.gender, 
    xf_user.avatar_date	
    FROM xf_thread
    INNER JOIN xf_node ON xf_node.node_id = xf_thread.node_id
    INNER JOIN xf_user ON xf_user.user_id = xf_thread.user_id
    WHERE xf_thread.title LIKE '%Anais%'
    AND xf_thread.title LIKE '%Demoustier%'
    AND xf_thread.discussion_state = 'visible'
    AND xf_thread.discussion_type <> 'redirect'
    AND xf_thread.post_date >= ?
    AND (xf_thread.node_id = 1 OR xf_thread.node_id = 3 OR xf_thread.node_id = 4 OR xf_thread.node_id = 5 OR xf_thread.node_id = 83 OR xf_thread.node_id = 223 OR xf_thread.node_id = 222 OR xf_thread.node_id = 220 OR xf_thread.node_id = 221 OR xf_thread.node_id = 219 OR xf_thread.node_id = 116 OR xf_thread.node_id = 50 OR xf_thread.node_id = 78 OR xf_thread.node_id = 72 OR xf_thread.node_id = 71 OR xf_thread.node_id = 69 OR xf_thread.node_id = 64 OR xf_thread.node_id = 63 OR xf_thread.node_id = 51 OR xf_thread.node_id = 52 OR xf_thread.node_id = 113 OR xf_thread.node_id = 114 OR xf_thread.node_id = 101 OR xf_thread.node_id = 110 OR xf_thread.node_id = 99 OR xf_thread.node_id = 100 OR xf_thread.node_id = 109 OR xf_thread.node_id = 98 OR xf_thread.node_id = 90 OR xf_thread.node_id = 95 OR xf_thread.node_id = 91 OR xf_thread.node_id = 86 OR xf_thread.node_id = 84 OR xf_thread.node_id = 164 OR xf_thread.node_id = 158 OR xf_thread.node_id = 157 OR xf_thread.node_id = 142 OR xf_thread.node_id = 132 OR xf_thread.node_id = 136 OR xf_thread.node_id = 127 OR xf_thread.node_id = 122 OR xf_thread.node_id = 121 OR xf_thread.node_id = 118 OR xf_thread.node_id = 117 OR xf_thread.node_id = 191 OR xf_thread.node_id = 187 OR xf_thread.node_id = 179 OR xf_thread.node_id = 177 OR xf_thread.node_id = 173 OR xf_thread.node_id = 170 OR xf_thread.node_id = 165 OR xf_thread.node_id = 171 OR xf_thread.node_id = 205 OR xf_thread.node_id = 198 OR xf_thread.node_id = 218 OR xf_thread.node_id = 213 OR xf_thread.node_id = 215 OR xf_thread.node_id = 70 OR xf_thread.node_id = 207 OR xf_thread.node_id = 209 OR xf_thread.node_id = 214 OR xf_thread.node_id = 210 OR xf_thread.node_id = 73 OR xf_thread.node_id = 6 OR xf_thread.node_id = 7 OR xf_thread.node_id = 8 OR xf_thread.node_id = 111 OR xf_thread.node_id = 216 OR xf_thread.node_id = 17 OR xf_thread.node_id = 18 OR xf_thread.node_id = 9 OR xf_thread.node_id = 10 OR xf_thread.node_id = 27 OR xf_thread.node_id = 21 OR xf_thread.node_id = 82 OR xf_thread.node_id = 45 OR xf_thread.node_id = 46 OR xf_thread.node_id = 81 OR xf_thread.node_id = 92 OR xf_thread.node_id = 49 OR xf_thread.node_id = 76 OR xf_thread.node_id = 62 OR xf_thread.node_id = 61 OR xf_thread.node_id = 93 OR xf_thread.node_id = 41 OR xf_thread.node_id = 87 OR xf_thread.node_id = 67 OR xf_thread.node_id = 68 OR xf_thread.node_id = 217 OR xf_thread.node_id = 212 OR xf_thread.node_id = 211 OR xf_thread.node_id = 204 OR xf_thread.node_id = 192 OR xf_thread.node_id = 193 OR xf_thread.node_id = 194 OR xf_thread.node_id = 195 OR xf_thread.node_id = 196 OR xf_thread.node_id = 197 OR xf_thread.node_id = 89 OR xf_thread.node_id = 163 OR xf_thread.node_id = 77 OR xf_thread.node_id = 88 OR xf_thread.node_id = 174 OR xf_thread.node_id = 11 OR xf_thread.node_id = 12 OR xf_thread.node_id = 13 OR xf_thread.node_id = 126 OR xf_thread.node_id = 14 OR xf_thread.node_id = 15 OR xf_thread.node_id = 22 OR xf_thread.node_id = 34 OR xf_thread.node_id = 35 OR xf_thread.node_id = 199 OR xf_thread.node_id = 32 OR xf_thread.node_id = 102 OR xf_thread.node_id = 115 OR xf_thread.node_id = 128 OR xf_thread.node_id = 129 OR xf_thread.node_id = 125 OR xf_thread.node_id = 130 OR xf_thread.node_id = 140 OR xf_thread.node_id = 119 OR xf_thread.node_id = 131 OR xf_thread.node_id = 23 OR xf_thread.node_id = 29 OR xf_thread.node_id = 24 OR xf_thread.node_id = 26 OR xf_thread.node_id = 42 OR xf_thread.node_id = 25 OR xf_thread.node_id = 30 OR xf_thread.node_id = 79)
    AND xf_thread.thread_id <> '197685'
    
    
    
    ORDER BY xf_thread.post_date DESC
    LIMIT ?
    Params: 0, 5
    Run Time: 0.062891
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date,user_idpost_date4 172048Using where
    SIMPLExf_usereq_refPRIMARYPRIMARY4forum.xf_thread.user_id1 
    SIMPLExf_nodeeq_refPRIMARYPRIMARY4forum.xf_thread.node_id1 
  17. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 6d5657b3de45a737d7c0a9b80bfb27a6, , 1715130559
    Run Time: 0.000174
  18.             INSERT INTO xf_sv_user_activity 
                (content_type, content_id, `blob`, `timestamp`) 
                VALUES 
                  (?,?,?,?),(?,?,?,?)
                 ON DUPLICATE KEY UPDATE `timestamp` = values(`timestamp`)
    Params: node, 12, 0 1 3.140.186.241, 1715126940, thread, 197685, 0 1 3.140.186.241, 1715126940
    Run Time: 0.000465
  19. 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=197685, 1715126959,
    Run Time: 0.000100
  20. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'tinhte_xentag_bb_code_tag_tag', 'tinhte_xentag_bb_code_tag_hashtag', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'profile_view_count', 'conversationpost_post', 'conversationpost_userinfo', 'xfc_notepad_sidebar', 'thread_view', '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, 1
    Run Time: 0.000356
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 31Using where
  21. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('mood_display')
    	AND style_id = ?
    	AND language_id = ?
    Params: 1, 1
    Run Time: 0.000080
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (196, XenForo Classes: 66)

  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/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/ThemeHouse/Thumbnails/Listener/LoadClass.php
  59. library/ThemeHouse/Listener/LoadClass.php
  60. library/ThemeHouse/Listener/LoadClass/20150518.php
  61. library/SV/TitleEditHistory/Listener.php
  62. library/ThreadRating/Listener/Class.php
  63. library/Vinavb/CustomNodeIcon/Listener.php
  64. library/Awedo/PostAreas/Listener/LoadClassController.php
  65. library/ProfileViewCount/Listener.php
  66. library/ConversationPost/Listener.php
  67. library/XFCrowd/NotePad/Listener.php
  68. library/RainDD/UserActivity/Listener.php
  69. library/Andy/Bookmark/Listener.php
  70. library/Andy/SimilarThreads/Listener.php
  71. library/Andy/History/Listener.php
  72. library/Andy/RandomThread/Listener.php
  73. library/SV/UserActivity/Listener.php
  74. library/SV/ReportImprovements/Listener.php
  75. library/ThemeHouse/Thumbnails/Extend/XenForo/ControllerPublic/Thread.php
  76. library/SV/TitleEditHistory/XenForo/ControllerPublic/Thread.php
  77. library/Tinhte/XenTag/XenForo/ControllerPublic/Thread.php
  78. library/ThreadRating/ControllerPublic/Thread.php
  79. library/SK/MarkThreadRead/ControllerPublic/Thread.php
  80. library/NixFifty/TrashCan/ControllerPublic/Thread.php
  81. library/RainDD/UserActivity/Controller/ThreadViewers.php
  82. library/RainDD/UserActivity/Controller/ThreadReaders.php
  83. library/Andy/Bookmark/ControllerPublic/Thread.php
  84. library/Andy/SimilarThreads/ControllerPublic/Thread.php
  85. library/Andy/History/ControllerPublic/Thread.php
  86. library/Andy/RandomThread/ControllerPublic/Thread.php
  87. library/SV/UserActivity/XenForo/ControllerPublic/Thread.php
  88. library/SV/UserActivity/UserActivityInjector.php
  89. library/SV/UserActivity/UserCountActivityInjector.php
  90. library/SV/ReportImprovements/XenForo/ControllerPublic/Thread.php
  91. library/XenForo/Input.php
  92. library/XenForo/Session.php
  93. library/XenForo/Helper/Ip.php
  94. library/XenForo/Model/User.php
  95. library/XenMoods/XFCP/Model/User.php
  96. library/TilkiBey/ThreadCount/Extends/Model/User.php
  97. library/Dark/PostRating/Model/User.php
  98. library/SV/UserActivity/XenForo/Model/User.php
  99. library/SV/ReportImprovements/XenForo/Model/User.php
  100. library/XenForo/Permission.php
  101. library/XenForo/Helper/Php.php
  102. library/XenForo/Phrase.php
  103. library/XenForo/Locale.php
  104. library/Snog/CountryFlags/Listener/Visitor.php
  105. library/Snog/CountryFlags/Listener/Includes/Reader.php
  106. library/Snog/CountryFlags/Listener/Includes/Reader/Decoder.php
  107. library/Snog/CountryFlags/Listener/Includes/Reader/InvalidDatabaseException.php
  108. library/Snog/CountryFlags/Listener/Includes/Reader/Metadata.php
  109. library/Snog/CountryFlags/Listener/Includes/Reader/Util.php
  110. library/SV/UserActivity/Model.php
  111. library/XenForo/Model/Report.php
  112. library/SV/ReportImprovements/XenForo/Model/Report.php
  113. library/XenForo/ControllerHelper/ForumThreadPost.php
  114. library/XenForo/ControllerHelper/Abstract.php
  115. library/XenForo/Model/Thread.php
  116. library/rellect/LikesSummary/Listener/Proxy.php
  117. library/Snog/CountryFlags/Listener/Thread.php
  118. library/SV/TitleEditHistory/XenForo/Model/Thread.php
  119. library/Tinhte/XenTag/XenForo/Model/Thread.php
  120. library/Dark/PostRating/Model/Thread.php
  121. library/ThreadRating/Model/Thread.php
  122. library/rellect/LikesSummary/XenForo/Model/Thread.php
  123. library/Snog/CountryFlags/Model/Thread.php
  124. library/SV/ReportImprovements/XenForo/Model/Thread.php
  125. library/Dark/PostRating/Model.php
  126. library/XenForo/Model/Forum.php
  127. library/Tinhte/XenTag/XenForo/Model/Forum.php
  128. library/SV/ReportImprovements/XenForo/Model/Forum.php
  129. library/Tinhte/XenTag/Constants.php
  130. library/Tinhte/XenTag/Helper.php
  131. library/XenForo/Helper/String.php
  132. library/XenForo/Model/Post.php
  133. library/Snog/CountryFlags/Listener/Post.php
  134. library/Dark/PostRating/Model/Post.php
  135. library/XenForo/Model/Attachment.php
  136. library/ThemeHouse/Thumbnails/Extend/XenForo/Model/Attachment.php
  137. library/XenForo/Model/Node.php
  138. library/ThemeHouse/Thumbnails/Extend/XenForo/Model/Node.php
  139. library/XenForo/Route/Prefix/Categories.php
  140. library/XenForo/Route/Prefix/Forums.php
  141. library/XenForo/ControllerResponse/View.php
  142. library/XenForo/ControllerResponse/Abstract.php
  143. library/ThemeHouse/Thumbnails/Model/Thumbnails.php
  144. library/Andy/SimilarThreads/Model.php
  145. library/XenForo/NodeHandler/Category.php
  146. library/XenForo/NodeHandler/Abstract.php
  147. library/XenForo/NodeHandler/Forum.php
  148. library/XenForo/Model/Category.php
  149. library/XenForo/Db.php
  150. library/XenForo/Helper/Cookie.php
  151. library/XenForo/ViewRenderer/HtmlPublic.php
  152. library/XenForo/ViewRenderer/Abstract.php
  153. library/XenForo/Template/Public.php
  154. library/XenForo/Template/Abstract.php
  155. library/XenMoods/Listener/FrontControllerPreView.php
  156. library/XenMoods/Model/Mood.php
  157. library/XenForo/ViewPublic/Thread/View.php
  158. library/XenForo/ViewPublic/Base.php
  159. library/XenForo/View.php
  160. library/Tinhte/XenTag/XenForo/ViewPublic/Thread/View.php
  161. library/XenForo/BbCode/Parser.php
  162. library/XenForo/BbCode/Formatter/Base.php
  163. library/MobileRead/ProfileBbCode/Listener/Proxy.php
  164. library/Tinhte/XenTag/XenForo/BbCode/Formatter/Base.php
  165. library/MobileRead/ProfileBbCode/BbCode/Formatter/Restricted.php
  166. library/XenForo/ViewPublic/Helper/Message.php
  167. library/XenForo/BbCode/TextWrapper.php
  168. library/Tinhte/XenTag/ContentWrapper/Post.php
  169. library/Tinhte/XenTag/ContentWrapper/Abstract.php
  170. library/Tinhte/XenTag/Option.php
  171. library/ThemeHouse/Thumbnails/Listener/TemplateCreate.php
  172. library/ThemeHouse/Listener/TemplateCreate.php
  173. library/ThemeHouse/Listener/TemplateCreate/20150106.php
  174. library/AddonsLab/OriginalPosterHighlight/Listener/TemplateCreate.php
  175. library/AddonsLab/OriginalPosterHighlight/Abstract/Listener/TemplateCreate.php
  176. library/XenForo/Route/Prefix/Members.php
  177. library/Siropu/Chat/Helper.php
  178. library/ThreadRating/Listener/Template.php
  179. library/Sedo/ToggleME/Listener.php
  180. library/ThemeHouse/Thumbnails/Listener/TemplateHook.php
  181. library/ThemeHouse/Listener/TemplateHook.php
  182. library/ThemeHouse/Listener/TemplateHook/20150106.php
  183. library/ThemeHouse/Listener/Template.php
  184. library/ThemeHouse/Listener/Template/20150106.php
  185. library/XenMoods/Listener/TemplateHook.php
  186. library/XenForo/Route/Prefix/Posts.php
  187. library/ThemeHouse/Thumbnails/Listener/TemplatePostRender.php
  188. library/ThemeHouse/Listener/TemplatePostRender.php
  189. library/ThemeHouse/Listener/TemplatePostRender/20150106.php
  190. library/XenForo/Model/Avatar.php
  191. library/XenForo/Helper/Criteria.php
  192. library/XenForo/Debug.php
  193. library/Siropu/Chat/HelperDevice.php
  194. library/Siropu/Chat/ThirdParty/Mobile_Detect.php
  195. library/XenForo/ViewRenderer/Json.php
  196. library/Vinavb/CustomNodeIcon/Icon.php