Page Time: 0.1560s

Memory: 4.3459 MB (Peak: 5.2338 MB)

Queries (17, time: 0.1107s, 70.9%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000084
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. 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
    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)
    WHERE thread.thread_id = ?
    Params: 1267
    Run Time: 0.000375
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const1 
  3. 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: 29
    Run Time: 0.000119
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		0 AS like_date
    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)
    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: 1267
    Run Time: 0.001364
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4chiase_org_f4f0.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4chiase_org_f4f0.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4chiase_org_f4f0.post.user_id1 
  5. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 1267
    Run Time: 0.000136
  6. SELECT value.*, field.field_type
    FROM xf_user_field_value AS value
    INNER JOIN xf_user_field AS field ON (field.field_id = value.field_id)
    WHERE value.user_id = ?
    Params: 5
    Run Time: 0.000054
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEvaluerefPRIMARY,field_idPRIMARY4const7 
    SIMPLEfieldeq_refPRIMARYPRIMARY27chiase_org_f4f0.value.field_id1 
  7.  SELECT * FROM xf_post WHERE post_id = '2330'
    Run Time: 0.000234
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_postconstPRIMARYPRIMARY4const1 
  8. SELECT *
    FROM xf_node
    
    ORDER BY lft ASC
    Run Time: 0.000158
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALL    94Using filesort
  9. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000163
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const94Using where
  10. SELECT params
    FROM xf_session_activity
    WHERE user_id = ?
    AND controller_action = 'CreateThread'
    Params: 0
    Run Time: 0.000461
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_session_activityrefPRIMARYPRIMARY4const464Using where
  11. 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 'List Truyện Ngôn %'
    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 = 5 OR xf_thread.node_id = 6 OR xf_thread.node_id = 2 OR xf_thread.node_id = 7 OR xf_thread.node_id = 21 OR xf_thread.node_id = 22 OR xf_thread.node_id = 23 OR xf_thread.node_id = 24 OR xf_thread.node_id = 8 OR xf_thread.node_id = 25 OR xf_thread.node_id = 26 OR xf_thread.node_id = 27 OR xf_thread.node_id = 28 OR xf_thread.node_id = 9 OR xf_thread.node_id = 29 OR xf_thread.node_id = 30 OR xf_thread.node_id = 31 OR xf_thread.node_id = 32 OR xf_thread.node_id = 10 OR xf_thread.node_id = 33 OR xf_thread.node_id = 34 OR xf_thread.node_id = 35 OR xf_thread.node_id = 36 OR xf_thread.node_id = 3 OR xf_thread.node_id = 11 OR xf_thread.node_id = 37 OR xf_thread.node_id = 38 OR xf_thread.node_id = 39 OR xf_thread.node_id = 40 OR xf_thread.node_id = 12 OR xf_thread.node_id = 41 OR xf_thread.node_id = 42 OR xf_thread.node_id = 43 OR xf_thread.node_id = 44 OR xf_thread.node_id = 13 OR xf_thread.node_id = 45 OR xf_thread.node_id = 46 OR xf_thread.node_id = 47 OR xf_thread.node_id = 48 OR xf_thread.node_id = 14 OR xf_thread.node_id = 49 OR xf_thread.node_id = 50 OR xf_thread.node_id = 51 OR xf_thread.node_id = 52 OR xf_thread.node_id = 4 OR xf_thread.node_id = 19 OR xf_thread.node_id = 20 OR xf_thread.node_id = 53 OR xf_thread.node_id = 89 OR xf_thread.node_id = 54 OR xf_thread.node_id = 55 OR xf_thread.node_id = 56 OR xf_thread.node_id = 57 OR xf_thread.node_id = 58 OR xf_thread.node_id = 59 OR xf_thread.node_id = 60 OR xf_thread.node_id = 61 OR xf_thread.node_id = 62 OR xf_thread.node_id = 63 OR xf_thread.node_id = 64 OR xf_thread.node_id = 65 OR xf_thread.node_id = 66 OR xf_thread.node_id = 67 OR xf_thread.node_id = 68 OR xf_thread.node_id = 69 OR xf_thread.node_id = 70 OR xf_thread.node_id = 71 OR xf_thread.node_id = 72 OR xf_thread.node_id = 73 OR xf_thread.node_id = 74 OR xf_thread.node_id = 75 OR xf_thread.node_id = 76 OR xf_thread.node_id = 77 OR xf_thread.node_id = 78 OR xf_thread.node_id = 79 OR xf_thread.node_id = 80 OR xf_thread.node_id = 81 OR xf_thread.node_id = 82 OR xf_thread.node_id = 83 OR xf_thread.node_id = 84 OR xf_thread.node_id = 90 OR xf_thread.node_id = 91 OR xf_thread.node_id = 92 OR xf_thread.node_id = 93 OR xf_thread.node_id = 94 OR xf_thread.node_id = 85 OR xf_thread.node_id = 86 OR xf_thread.node_id = 87 OR xf_thread.node_id = 88 OR xf_thread.node_id = 15 OR xf_thread.node_id = 16 OR xf_thread.node_id = 17 OR xf_thread.node_id = 18)
    AND xf_thread.thread_id <> '1267'
    
    
    ORDER BY xf_thread.title DESC
    LIMIT ?
    Params: 0, 5
    Run Time: 0.026287
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date,user_idpost_date4 6560Using index condition; Using where; Using filesort
    SIMPLExf_usereq_refPRIMARYPRIMARY4chiase_org_f4f0.xf_thread.user_id1 
    SIMPLExf_nodeeq_refPRIMARYPRIMARY4chiase_org_f4f0.xf_thread.node_id1 
  12. 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 '%List %'
    AND xf_thread.title LIKE '% Truyện %'
    AND xf_thread.title LIKE '% Ngôn%'
    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 = 5 OR xf_thread.node_id = 6 OR xf_thread.node_id = 2 OR xf_thread.node_id = 7 OR xf_thread.node_id = 21 OR xf_thread.node_id = 22 OR xf_thread.node_id = 23 OR xf_thread.node_id = 24 OR xf_thread.node_id = 8 OR xf_thread.node_id = 25 OR xf_thread.node_id = 26 OR xf_thread.node_id = 27 OR xf_thread.node_id = 28 OR xf_thread.node_id = 9 OR xf_thread.node_id = 29 OR xf_thread.node_id = 30 OR xf_thread.node_id = 31 OR xf_thread.node_id = 32 OR xf_thread.node_id = 10 OR xf_thread.node_id = 33 OR xf_thread.node_id = 34 OR xf_thread.node_id = 35 OR xf_thread.node_id = 36 OR xf_thread.node_id = 3 OR xf_thread.node_id = 11 OR xf_thread.node_id = 37 OR xf_thread.node_id = 38 OR xf_thread.node_id = 39 OR xf_thread.node_id = 40 OR xf_thread.node_id = 12 OR xf_thread.node_id = 41 OR xf_thread.node_id = 42 OR xf_thread.node_id = 43 OR xf_thread.node_id = 44 OR xf_thread.node_id = 13 OR xf_thread.node_id = 45 OR xf_thread.node_id = 46 OR xf_thread.node_id = 47 OR xf_thread.node_id = 48 OR xf_thread.node_id = 14 OR xf_thread.node_id = 49 OR xf_thread.node_id = 50 OR xf_thread.node_id = 51 OR xf_thread.node_id = 52 OR xf_thread.node_id = 4 OR xf_thread.node_id = 19 OR xf_thread.node_id = 20 OR xf_thread.node_id = 53 OR xf_thread.node_id = 89 OR xf_thread.node_id = 54 OR xf_thread.node_id = 55 OR xf_thread.node_id = 56 OR xf_thread.node_id = 57 OR xf_thread.node_id = 58 OR xf_thread.node_id = 59 OR xf_thread.node_id = 60 OR xf_thread.node_id = 61 OR xf_thread.node_id = 62 OR xf_thread.node_id = 63 OR xf_thread.node_id = 64 OR xf_thread.node_id = 65 OR xf_thread.node_id = 66 OR xf_thread.node_id = 67 OR xf_thread.node_id = 68 OR xf_thread.node_id = 69 OR xf_thread.node_id = 70 OR xf_thread.node_id = 71 OR xf_thread.node_id = 72 OR xf_thread.node_id = 73 OR xf_thread.node_id = 74 OR xf_thread.node_id = 75 OR xf_thread.node_id = 76 OR xf_thread.node_id = 77 OR xf_thread.node_id = 78 OR xf_thread.node_id = 79 OR xf_thread.node_id = 80 OR xf_thread.node_id = 81 OR xf_thread.node_id = 82 OR xf_thread.node_id = 83 OR xf_thread.node_id = 84 OR xf_thread.node_id = 90 OR xf_thread.node_id = 91 OR xf_thread.node_id = 92 OR xf_thread.node_id = 93 OR xf_thread.node_id = 94 OR xf_thread.node_id = 85 OR xf_thread.node_id = 86 OR xf_thread.node_id = 87 OR xf_thread.node_id = 88 OR xf_thread.node_id = 15 OR xf_thread.node_id = 16 OR xf_thread.node_id = 17 OR xf_thread.node_id = 18)
    AND xf_thread.thread_id <> '1267'
    
    
    AND xf_thread.thread_id <> 1569 AND xf_thread.thread_id <> 10884
    ORDER BY xf_thread.title DESC
    LIMIT ?
    Params: 0, 3
    Run Time: 0.046064
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date,user_idpost_date4 6560Using index condition; Using where; Using filesort
    SIMPLExf_usereq_refPRIMARYPRIMARY4chiase_org_f4f0.xf_thread.user_id1 
    SIMPLExf_nodeeq_refPRIMARYPRIMARY4chiase_org_f4f0.xf_thread.node_id1 
  13. 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 '%List%'
    AND xf_thread.title LIKE '%Truyện%'
    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 = 5 OR xf_thread.node_id = 6 OR xf_thread.node_id = 2 OR xf_thread.node_id = 7 OR xf_thread.node_id = 21 OR xf_thread.node_id = 22 OR xf_thread.node_id = 23 OR xf_thread.node_id = 24 OR xf_thread.node_id = 8 OR xf_thread.node_id = 25 OR xf_thread.node_id = 26 OR xf_thread.node_id = 27 OR xf_thread.node_id = 28 OR xf_thread.node_id = 9 OR xf_thread.node_id = 29 OR xf_thread.node_id = 30 OR xf_thread.node_id = 31 OR xf_thread.node_id = 32 OR xf_thread.node_id = 10 OR xf_thread.node_id = 33 OR xf_thread.node_id = 34 OR xf_thread.node_id = 35 OR xf_thread.node_id = 36 OR xf_thread.node_id = 3 OR xf_thread.node_id = 11 OR xf_thread.node_id = 37 OR xf_thread.node_id = 38 OR xf_thread.node_id = 39 OR xf_thread.node_id = 40 OR xf_thread.node_id = 12 OR xf_thread.node_id = 41 OR xf_thread.node_id = 42 OR xf_thread.node_id = 43 OR xf_thread.node_id = 44 OR xf_thread.node_id = 13 OR xf_thread.node_id = 45 OR xf_thread.node_id = 46 OR xf_thread.node_id = 47 OR xf_thread.node_id = 48 OR xf_thread.node_id = 14 OR xf_thread.node_id = 49 OR xf_thread.node_id = 50 OR xf_thread.node_id = 51 OR xf_thread.node_id = 52 OR xf_thread.node_id = 4 OR xf_thread.node_id = 19 OR xf_thread.node_id = 20 OR xf_thread.node_id = 53 OR xf_thread.node_id = 89 OR xf_thread.node_id = 54 OR xf_thread.node_id = 55 OR xf_thread.node_id = 56 OR xf_thread.node_id = 57 OR xf_thread.node_id = 58 OR xf_thread.node_id = 59 OR xf_thread.node_id = 60 OR xf_thread.node_id = 61 OR xf_thread.node_id = 62 OR xf_thread.node_id = 63 OR xf_thread.node_id = 64 OR xf_thread.node_id = 65 OR xf_thread.node_id = 66 OR xf_thread.node_id = 67 OR xf_thread.node_id = 68 OR xf_thread.node_id = 69 OR xf_thread.node_id = 70 OR xf_thread.node_id = 71 OR xf_thread.node_id = 72 OR xf_thread.node_id = 73 OR xf_thread.node_id = 74 OR xf_thread.node_id = 75 OR xf_thread.node_id = 76 OR xf_thread.node_id = 77 OR xf_thread.node_id = 78 OR xf_thread.node_id = 79 OR xf_thread.node_id = 80 OR xf_thread.node_id = 81 OR xf_thread.node_id = 82 OR xf_thread.node_id = 83 OR xf_thread.node_id = 84 OR xf_thread.node_id = 90 OR xf_thread.node_id = 91 OR xf_thread.node_id = 92 OR xf_thread.node_id = 93 OR xf_thread.node_id = 94 OR xf_thread.node_id = 85 OR xf_thread.node_id = 86 OR xf_thread.node_id = 87 OR xf_thread.node_id = 88 OR xf_thread.node_id = 15 OR xf_thread.node_id = 16 OR xf_thread.node_id = 17 OR xf_thread.node_id = 18)
    AND xf_thread.thread_id <> '1267'
    
    
    AND xf_thread.thread_id <> 1569 AND xf_thread.thread_id <> 10884
    AND xf_thread.thread_id <> 1322 AND xf_thread.thread_id <> 1258
    ORDER BY xf_thread.title DESC
    LIMIT ?
    Params: 0, 1
    Run Time: 0.033752
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date,user_idpost_date4 6560Using index condition; Using where; Using filesort
    SIMPLExf_usereq_refPRIMARYPRIMARY4chiase_org_f4f0.xf_thread.user_id1 
    SIMPLExf_nodeeq_refPRIMARYPRIMARY4chiase_org_f4f0.xf_thread.node_id1 
  14. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 07546c16214a76057e71822c4b4a68db, , 1726884194
    Run Time: 0.000182
  15. 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=1267, 1726880594,
    Run Time: 0.000133
  16. select value, hits 
    from dark_azucloud_terms_pages pages 
    left join dark_azucloud_terms terms on pages.term_id = terms.id 
    where route = ? and terms.block = 0 and terms.value is not null and last_clicked > ? 
    order by hits desc, last_clicked desc
    limit ?
    Params: threads/list-truyen-ngon-tinh-hien-dai-hay.1267/, 1724288594, 10
    Run Time: 0.000956
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpagesrefterm_id_route,route,route_hits_last_clickedroute_hits_last_clicked452const4Using where
    SIMPLEtermseq_refPRIMARY,value,blockPRIMARY4chiase_org_f4f0.pages.term_id1Using where
  17. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('BRC_action_login', 'BRC_action_login_description', 'BRC_action_exchange', 'BRC_action_exchange_description', 'BRC_action_transfer', 'BRC_action_transfer_description', 'BRC_action_withdraw', 'BRC_action_withdraw_description', 'BRC_action_steal', 'BRC_action_steal_description', 'BRC_action_paypalPayment', 'BRC_action_paypalPayment_description', 'BRC_action_paypalPaymentRe', 'BRC_action_paypalPaymentRe_description', 'BRC_action_registration', 'BRC_action_registration_description', 'BRC_action_facebookAssociate', 'BRC_action_facebookAssociate_description', 'BRC_action_facebookDisassociate', 'BRC_action_facebookDisassociate_description', 'BRC_action_twitterAssociate', 'BRC_action_twitterAssociate_description', 'BRC_action_twitterDisassociate', 'BRC_action_twitterDisassociate_description', 'BRC_action_googleAssociate', 'BRC_action_googleAssociate_description', 'BRC_action_googleDisassociate', 'BRC_action_googleDisassociate_description', 'BRC_action_birthday', 'BRC_action_birthday_description', 'BRC_action_importVbb', 'BRC_action_importVbb_description', 'BRC_action_interest', 'BRC_action_interest_description', 'BRC_action_updateFullProfile', 'BRC_action_updateFullProfile_description', 'BRC_action_updateFullProfileRe', 'BRC_action_updateFullProfileRe_description', 'BRC_action_uploadAvatar', 'BRC_action_uploadAvatar_description', 'BRC_action_uploadAvatarRe', 'BRC_action_uploadAvatarRe_description', 'BRC_action_updateStatus', 'BRC_action_updateStatus_description', 'BRC_action_follow', 'BRC_action_follow_description', 'BRC_action_followRe', 'BRC_action_followRe_description', 'BRC_action_getFollower', 'BRC_action_getFollower_description', 'BRC_action_getFollowerRe', 'BRC_action_getFollowerRe_description', 'BRC_action_profilePost', 'BRC_action_profilePost_description', 'BRC_action_getProfilePost', 'BRC_action_getProfilePost_description', 'BRC_action_likeProfilePost', 'BRC_action_likeProfilePost_description', 'BRC_action_likeProfilePostRe', 'BRC_action_likeProfilePostRe_description', 'BRC_action_receiveProfilePostLike', 'BRC_action_receiveProfilePostLike_description', 'BRC_action_receiveProfilePostLikeRe', 'BRC_action_receiveProfilePostLikeRe_description', 'BRC_action_createConversation', 'BRC_action_createConversation_description', 'BRC_action_createConversationRe', 'BRC_action_createConversationRe_description', 'BRC_action_receiveConversation', 'BRC_action_receiveConversation_description', 'BRC_action_replyConversation', 'BRC_action_replyConversation_description', 'BRC_action_conversationGetReply', 'BRC_action_conversationGetReply_description', 'BRC_action_trophyReward', 'BRC_action_trophyReward_description', 'BRC_action_dailyReward', 'BRC_action_dailyReward_description', 'BRC_action_salary', 'BRC_action_salary_description', 'BRC_action_createNewThread', 'BRC_action_createNewThread_description', 'BRC_action_threadDeleted', 'BRC_action_threadDeleted_description', 'BRC_action_threadGetReply', 'BRC_action_threadGetReply_description', 'BRC_action_threadViewed', 'BRC_action_threadViewed_description', 'BRC_action_readThread', 'BRC_action_readThread_description', 'BRC_action_watchThread', 'BRC_action_watchThread_description', 'BRC_action_watchThreadRe', 'BRC_action_watchThreadRe_description', 'BRC_action_threadGetWatched', 'BRC_action_threadGetWatched_description', 'BRC_action_threadGetWatchedRe', 'BRC_action_threadGetWatchedRe_description', 'BRC_action_createNewPoll', 'BRC_action_createNewPoll_description', 'BRC_action_votePoll', 'BRC_action_votePoll_description', 'BRC_action_pollGetVote', 'BRC_action_pollGetVote_description', 'BRC_action_threadSticky', 'BRC_action_threadSticky_description', 'BRC_action_threadStickyRe', 'BRC_action_threadStickyRe_description', 'BRC_action_newPost', 'BRC_action_newPost_description', 'BRC_action_postDeleted', 'BRC_action_postDeleted_description', 'BRC_action_uploadAttachment', 'BRC_action_uploadAttachment_description', 'BRC_action_uploadAttachmentRe', 'BRC_action_uploadAttachmentRe_description', 'BRC_action_downloadAttachment', 'BRC_action_downloadAttachment_description', 'BRC_action_attachmentDownloaded', 'BRC_action_attachmentDownloaded_description', 'BRC_action_likePost', 'BRC_action_likePost_description', 'BRC_action_likePostRe', 'BRC_action_likePostRe_description', 'BRC_action_receivePostLike', 'BRC_action_receivePostLike_description', 'BRC_action_receivePostLikeRe', 'BRC_action_receivePostLikeRe_description', 'BRC_action_reportPost', 'BRC_action_reportPost_description', 'BRC_action_postReported', 'BRC_action_postReported_description', 'VNNET_action_NLATMPayment', 'VNNET_action_NLATMPayment_explain', 'BRC_action_AzuCloud', 'BRC_action_AzuCloud_explain')
    Params: 2
    Run Time: 0.000181
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 136Using where

Included Files (284, XenForo Classes: 70)

  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/Cache.php
  19. library/Zend/Cache/Backend/Redis.php
  20. library/Redis/lib/Credis/Client.php
  21. library/Redis/lib/Credis/Sentinel.php
  22. library/Redis/Cm/Cache/Backend/Redis.php
  23. library/Zend/Cache/Backend.php
  24. library/Zend/Cache/Backend/ExtendedInterface.php
  25. library/Zend/Cache/Backend/Interface.php
  26. library/Zend/Cache/Core.php
  27. library/XenForo/CodeEvent.php
  28. library/XenForo/Options.php
  29. library/XenForo/Link.php
  30. library/XenForo/Template/Helper/Core.php
  31. library/WidgetFramework/Listener.php
  32. library/WidgetFramework/Option.php
  33. library/phc/KeywordManagement/Listener/Listener.php
  34. library/XenForo/ControllerPublic/Abstract.php
  35. library/XenForo/Controller.php
  36. library/Brivium/BriviumHelper/EventListeners.php
  37. library/Brivium/BriviumHelper/1020271/EventListeners.php
  38. library/Brivium/Credits/Listener/Listener.php
  39. library/Mod/CascadingThreadListings/Listener/Listener.php
  40. library/Mod/OpenGraph/Listener.php
  41. library/SV/RedisCache/Listener.php
  42. library/Tinhte/XenTag/Listener.php
  43. library/VNNET/NganluongATM/Listeners.php
  44. library/Mod/ForumViewing/Listener/Listener.php
  45. library/Mod/BumpThread/Listener.php
  46. library/SV/RedisCache/XenForo/Model/DataRegistry.php
  47. library/XenForo/Phrase.php
  48. library/Brivium/Credits/Currency.php
  49. library/Brivium/Credits/Action.php
  50. library/Dark/AzuCloud/EventListener/FrontControllerPreView.php
  51. library/Brivium/Credits/ActionHandler/Login/ActionHandler.php
  52. library/Brivium/Credits/ActionHandler/Abstract.php
  53. library/Brivium/Credits/ActionHandler/Exchange/ActionHandler.php
  54. library/Brivium/Credits/ActionHandler/Transfer/ActionHandler.php
  55. library/Brivium/Credits/ActionHandler/Withdraw/ActionHandler.php
  56. library/Brivium/Credits/ActionHandler/Steal/ActionHandler.php
  57. library/Brivium/Credits/ActionHandler/PaypalPayment/ActionHandler.php
  58. library/Brivium/Credits/ActionHandler/PaypalPaymentRe/ActionHandler.php
  59. library/Brivium/Credits/ActionHandler/Registration/ActionHandler.php
  60. library/Brivium/Credits/ActionHandler/FacebookAssociate/ActionHandler.php
  61. library/Brivium/Credits/ActionHandler/FacebookDisassociate/ActionHandler.php
  62. library/Brivium/Credits/ActionHandler/TwitterAssociate/ActionHandler.php
  63. library/Brivium/Credits/ActionHandler/TwitterDisassociate/ActionHandler.php
  64. library/Brivium/Credits/ActionHandler/GoogleAssociate/ActionHandler.php
  65. library/Brivium/Credits/ActionHandler/GoogleDisassociate/ActionHandler.php
  66. library/Brivium/Credits/ActionHandler/Birthday/ActionHandler.php
  67. library/Brivium/Credits/ActionHandler/ImportVbb/ActionHandler.php
  68. library/Brivium/Credits/ActionHandler/Interest/ActionHandler.php
  69. library/Brivium/Credits/ActionHandler/UpdateFullProfile/ActionHandler.php
  70. library/Brivium/Credits/ActionHandler/UpdateFullProfileRe/ActionHandler.php
  71. library/Brivium/Credits/ActionHandler/UploadAvatar/ActionHandler.php
  72. library/Brivium/Credits/ActionHandler/UploadAvatarRe/ActionHandler.php
  73. library/Brivium/Credits/ActionHandler/UpdateStatus/ActionHandler.php
  74. library/Brivium/Credits/ActionHandler/Follow/ActionHandler.php
  75. library/Brivium/Credits/ActionHandler/FollowRe/ActionHandler.php
  76. library/Brivium/Credits/ActionHandler/GetFollower/ActionHandler.php
  77. library/Brivium/Credits/ActionHandler/GetFollowerRe/ActionHandler.php
  78. library/Brivium/Credits/ActionHandler/ProfilePost/ActionHandler.php
  79. library/Brivium/Credits/ActionHandler/GetProfilePost/ActionHandler.php
  80. library/Brivium/Credits/ActionHandler/LikeProfilePost/ActionHandler.php
  81. library/Brivium/Credits/ActionHandler/LikeProfilePostRe/ActionHandler.php
  82. library/Brivium/Credits/ActionHandler/ReceiveProfilePostLike/ActionHandler.php
  83. library/Brivium/Credits/ActionHandler/ReceiveProfilePostLikeRe/ActionHandler.php
  84. library/Brivium/Credits/ActionHandler/CreateConversation/ActionHandler.php
  85. library/Brivium/Credits/ActionHandler/CreateConversationRe/ActionHandler.php
  86. library/Brivium/Credits/ActionHandler/ReceiveConversation/ActionHandler.php
  87. library/Brivium/Credits/ActionHandler/ReplyConversation/ActionHandler.php
  88. library/Brivium/Credits/ActionHandler/ConversationGetReply/ActionHandler.php
  89. library/Brivium/Credits/ActionHandler/TrophyReward/ActionHandler.php
  90. library/Brivium/Credits/ActionHandler/DailyReward/ActionHandler.php
  91. library/Brivium/Credits/ActionHandler/Salary/ActionHandler.php
  92. library/Brivium/Credits/ActionHandler/CreateNewThread/ActionHandler.php
  93. library/Brivium/Credits/ActionHandler/ThreadDeleted/ActionHandler.php
  94. library/Brivium/Credits/ActionHandler/ThreadGetReply/ActionHandler.php
  95. library/Brivium/Credits/ActionHandler/ThreadViewed/ActionHandler.php
  96. library/Brivium/Credits/ActionHandler/ReadThread/ActionHandler.php
  97. library/Brivium/Credits/ActionHandler/WatchThread/ActionHandler.php
  98. library/Brivium/Credits/ActionHandler/WatchThreadRe/ActionHandler.php
  99. library/Brivium/Credits/ActionHandler/ThreadGetWatched/ActionHandler.php
  100. library/Brivium/Credits/ActionHandler/ThreadGetWatchedRe/ActionHandler.php
  101. library/Brivium/Credits/ActionHandler/CreateNewPoll/ActionHandler.php
  102. library/Brivium/Credits/ActionHandler/VotePoll/ActionHandler.php
  103. library/Brivium/Credits/ActionHandler/PollGetVote/ActionHandler.php
  104. library/Brivium/Credits/ActionHandler/ThreadSticky/ActionHandler.php
  105. library/Brivium/Credits/ActionHandler/ThreadStickyRe/ActionHandler.php
  106. library/Brivium/Credits/ActionHandler/NewPost/ActionHandler.php
  107. library/Brivium/Credits/ActionHandler/PostDeleted/ActionHandler.php
  108. library/Brivium/Credits/ActionHandler/UploadAttachment/ActionHandler.php
  109. library/Brivium/Credits/ActionHandler/UploadAttachmentRe/ActionHandler.php
  110. library/Brivium/Credits/ActionHandler/DownloadAttachment/ActionHandler.php
  111. library/Brivium/Credits/ActionHandler/AttachmentDownloaded/ActionHandler.php
  112. library/Brivium/Credits/ActionHandler/LikePost/ActionHandler.php
  113. library/Brivium/Credits/ActionHandler/LikePostRe/ActionHandler.php
  114. library/Brivium/Credits/ActionHandler/ReceivePostLike/ActionHandler.php
  115. library/Brivium/Credits/ActionHandler/ReceivePostLikeRe/ActionHandler.php
  116. library/Brivium/Credits/ActionHandler/ReportPost/ActionHandler.php
  117. library/Brivium/Credits/ActionHandler/PostReported/ActionHandler.php
  118. library/VNNET/NganluongATM/ActionHandler/ATM.php
  119. library/Dark/AzuCloud/ActionHandler/AzuCloud.php
  120. library/Brivium/Credits/Events.php
  121. library/MobileRead/ProfileBbCode/Listener/InitDependencies.php
  122. library/Cng/TopX/Listener.php
  123. library/Mod/TitleControl/Listener.php
  124. library/Dark/AzuCloud/Listener.php
  125. library/phc/LinkDirectory/Listener/Listener.php
  126. library/XenForo/Router.php
  127. library/XenForo/Route/Filter.php
  128. library/XenForo/Route/Interface.php
  129. library/XenForo/Route/ResponseSuffix.php
  130. library/XenForo/Route/Prefix.php
  131. library/WidgetFramework/Route/Filter/PageX.php
  132. library/XenForo/Route/Prefix/Threads.php
  133. library/XenKingDir/Listeners/Threads.php
  134. library/vtLai/UrlKhongDau/Listener.php
  135. library/XenKingDir/Route/Prefix/Threads.php
  136. library/vtLai/UrlKhongDau/Threads.php
  137. library/XenForo/RouteMatch.php
  138. library/XenForo/ControllerPublic/Thread.php
  139. library/XenKingDir/Listeners/ControllerPublic.php
  140. library/ThreadRating/Listener/Class.php
  141. library/VfcodersHH/Listener/LoadClass.php
  142. library/Mod/SimilarThreads/Listener.php
  143. library/Mod/OpenGraph/ControllerPublic/Thread.php
  144. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  145. library/ThreadRating/ControllerPublic/Thread.php
  146. library/Tinhte/XenTag/XenForo/ControllerPublic/Thread.php
  147. library/Brivium/Credits/ActionHandler/WatchThread/ControllerPublic/Thread.php
  148. library/Brivium/Credits/ActionHandler/WatchThreadRe/ControllerPublic/Thread.php
  149. library/Brivium/Credits/ActionHandler/ThreadGetWatched/ControllerPublic/Thread.php
  150. library/Brivium/Credits/ActionHandler/ThreadGetWatchedRe/ControllerPublic/Thread.php
  151. library/VfcodersHH/ControllerPublic/Thread.php
  152. library/Mod/BumpThread/ControllerPublic/Thread.php
  153. library/phc/LinkDirectory/Extend/XenForo/ControllerPublic/Thread.php
  154. library/Mod/SimilarThreads/ControllerPublic/Thread.php
  155. library/XenForo/Input.php
  156. library/XenForo/Session.php
  157. library/Zend/Db.php
  158. library/Zend/Db/Adapter/Mysqli.php
  159. library/Zend/Db/Adapter/Abstract.php
  160. library/Zend/Db/Select.php
  161. library/Zend/Db/Expr.php
  162. library/Zend/Db/Profiler.php
  163. library/Zend/Db/Statement/Mysqli.php
  164. library/Zend/Db/Statement.php
  165. library/Zend/Db/Statement/Interface.php
  166. library/XenForo/Helper/Ip.php
  167. library/XenForo/Visitor.php
  168. library/XenForo/Model/User.php
  169. library/WidgetFramework/XenForo/Model/User.php
  170. library/Brivium/Credits/Model/User.php
  171. library/Zend/Db/Profiler/Query.php
  172. library/XenForo/Permission.php
  173. library/XenForo/Helper/Php.php
  174. library/XenForo/Locale.php
  175. library/XenForo/ControllerHelper/ForumThreadPost.php
  176. library/XenForo/ControllerHelper/Abstract.php
  177. library/XenForo/Model/Thread.php
  178. library/Mod/CascadingThreadListings/Extend/Model/Thread.php
  179. library/SV/RedisCache/XenForo/Model/Thread.php
  180. library/WidgetFramework/XenForo/Model/Thread.php
  181. library/Tinhte/XenTag/XenForo/Model/Thread.php
  182. library/Brivium/Credits/ActionHandler/ThreadViewed/Model/Thread.php
  183. library/Brivium/Credits/ActionHandler/ReadThread/Model/Thread.php
  184. library/Mod/BumpThread/Model/Thread.php
  185. library/ThreadRating/Model/Thread.php
  186. library/XenForo/Model/Forum.php
  187. library/Tinhte/XenTag/XenForo/Model/Forum.php
  188. library/Tinhte/XenTag/Constants.php
  189. library/Tinhte/XenTag/Helper.php
  190. library/XenForo/Helper/String.php
  191. library/Mod/BumpThread/Helper/Permissions.php
  192. library/XenForo/Model/Post.php
  193. library/vtLai/UrlKhongDau/Converter.php
  194. library/XenForo/Model/Attachment.php
  195. library/Brivium/Credits/Model/Attachment.php
  196. library/XenForo/Model/Node.php
  197. library/Mod/ForumViewing/Model/Node.php
  198. library/XenForo/Route/Prefix/Categories.php
  199. library/vtLai/UrlKhongDau/Categories.php
  200. library/XenForo/Route/Prefix/Forums.php
  201. library/vtLai/UrlKhongDau/Forums.php
  202. library/XenForo/ControllerResponse/View.php
  203. library/XenForo/ControllerResponse/Abstract.php
  204. library/XenForo/Model/UserField.php
  205. library/Mod/OpenGraph/Model.php
  206. library/VfcodersHH/Model/Permission.php
  207. library/VfcodersHH/Helper/Parse.php
  208. library/VfcodersHH/Helper/Strip.php
  209. library/VfcodersHH/Helper/Tags.php
  210. library/Mod/SimilarThreads/Model.php
  211. library/XenForo/NodeHandler/Category.php
  212. library/XenForo/NodeHandler/Abstract.php
  213. library/XenForo/NodeHandler/Forum.php
  214. library/XenForo/Model/Category.php
  215. library/XenForo/Db.php
  216. library/XenForo/Helper/Cookie.php
  217. library/XenForo/ViewRenderer/HtmlPublic.php
  218. library/XenForo/ViewRenderer/Abstract.php
  219. library/XenForo/Template/Public.php
  220. library/XenForo/Template/Abstract.php
  221. library/WidgetFramework/Core.php
  222. library/XenForo/Model/Moderator.php
  223. library/Brivium/Credits/Model/Moderator.php
  224. library/WidgetFramework/Model/Widget.php
  225. library/WidgetFramework/Helper/Sort.php
  226. library/WidgetFramework/WidgetRenderer.php
  227. library/Dark/AzuCloud/Model/Nakano.php
  228. library/XenForo/ViewPublic/Thread/View.php
  229. library/XenForo/ViewPublic/Base.php
  230. library/XenForo/View.php
  231. library/WidgetFramework/XenForo/View1.php
  232. library/Tinhte/XenTag/XenForo/ViewPublic/Thread/View.php
  233. library/phc/KeywordManagement/Extend/ViewPublic/Threads.php
  234. library/XenForo/BbCode/Parser.php
  235. library/XenForo/BbCode/Formatter/Base.php
  236. library/MobileRead/ProfileBbCode/Listener/Proxy.php
  237. library/phc/KeywordManagement/Extend/BbCode/Formatter/Base.php
  238. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  239. library/Tinhte/XenTag/XenForo/BbCode/Formatter/Base.php
  240. library/VfcodersHH/BbCode/Formatter/Base.php
  241. library/MobileRead/ProfileBbCode/BbCode/Formatter/Restricted.php
  242. library/XenForo/ViewPublic/Helper/Message.php
  243. library/XenForo/BbCode/TextWrapper.php
  244. library/Tinhte/XenTag/ContentWrapper/Post.php
  245. library/Tinhte/XenTag/ContentWrapper/Abstract.php
  246. library/Tinhte/XenTag/Option.php
  247. library/phc/KeywordManagement/Helper/KWMHelper.php
  248. library/Tinhte/XenTag/Integration.php
  249. library/Brivium/Credits/Model/Credit.php
  250. library/VNNET/NganluongATM/Model/Credit.php
  251. library/VfcodersHH/Listener/TemplateCreate.php
  252. library/Mod/BumpThread/Template/Hook.php
  253. library/XenForo/Template/FileHandler.php
  254. library/XenForo/Helper/File.php
  255. internal_data/templates/S.6,L.2,tinhte_xentag_bb_code_tag_tag.php
  256. library/XenForo/Route/Prefix/Tags.php
  257. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  258. library/WidgetFramework/WidgetRenderer/Html.php
  259. library/WidgetFramework/WidgetRenderer/Threads.php
  260. library/WidgetFramework/Model/Cache.php
  261. library/WidgetFramework/WidgetRenderer/Stats.php
  262. library/Tinhte/XenTag/WidgetRenderer/Cloud.php
  263. library/XenForo/Route/Prefix/Members.php
  264. library/vtLai/UrlKhongDau/Members.php
  265. library/XenKingDir/Listeners/Nav.php
  266. library/XenKingDir/Model/Perms.php
  267. library/WidgetFramework/Template/Extended.php
  268. library/ThreadRating/Listener/Template.php
  269. internal_data/templates/S.6,L.2,thread_view.php
  270. library/XenKingDir/Listeners/TemplateHooks.php
  271. library/XenKingDir/Model/Dir.php
  272. library/VfcodersHH/Listener/Hook.php
  273. internal_data/templates/S.6,L.2,ld_thread_view_tools_links.php
  274. library/XenForo/Route/Prefix/Posts.php
  275. library/XenForo/Model/Avatar.php
  276. library/WidgetFramework/Helper/String.php
  277. internal_data/templates/S.6,L.2,wf_widget_stats.php
  278. library/WidgetFramework/WidgetRenderer/Empty.php
  279. internal_data/templates/S.6,L.2,wf_widget_wrapper.php
  280. library/XenForo/Helper/Criteria.php
  281. library/XenForo/Debug.php
  282. internal_data/templates/S.6,L.2,PAGE_CONTAINER.php
  283. library/Mod/TitleControl/Helper.php
  284. library/XenForo/ViewRenderer/Json.php